2016-07-25 06:31:32 -07:00
|
|
|
# Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
#
|
2018-02-16 18:24:55 -08:00
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
2016-07-25 06:31:32 -07:00
|
|
|
|
2018-05-20 23:06:59 -07:00
|
|
|
load("//:yoga_defs.bzl", "YOGA_ROOTS", "yoga_java_library", "yoga_prebuilt_jar")
|
2016-07-25 06:31:32 -07:00
|
|
|
|
2018-04-14 12:39:23 -07:00
|
|
|
yoga_prebuilt_jar(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "junit-jar",
|
2018-08-02 10:32:09 -07:00
|
|
|
binary_jar = "junit-4.12.jar",
|
2016-07-25 06:31:32 -07:00
|
|
|
)
|
|
|
|
|
2018-04-14 12:39:23 -07:00
|
|
|
yoga_java_library(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "junit",
|
2018-05-25 11:09:49 -07:00
|
|
|
visibility = YOGA_ROOTS,
|
2017-02-24 21:40:45 -08:00
|
|
|
exported_deps = [
|
|
|
|
":junit-jar",
|
|
|
|
],
|
2016-07-25 06:31:32 -07:00
|
|
|
)
|