2018-09-11 15:27:47 -07:00
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
2017-04-26 07:29:50 -07:00
|
|
|
#
|
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.
|
2017-04-26 07:29:50 -07:00
|
|
|
|
2020-03-24 05:18:30 -07:00
|
|
|
load("//tools/build_defs/oss:yoga_defs.bzl", "JSR_305_TARGET", "PROGUARD_ANNOTATIONS_TARGET", "SOLOADER_TARGET", "yoga_java_library")
|
2017-04-26 07:29:50 -07:00
|
|
|
|
2018-04-14 12:39:23 -07:00
|
|
|
yoga_java_library(
|
2017-04-26 07:29:50 -07:00
|
|
|
name = "jni",
|
|
|
|
srcs = glob(["**/*.java"]),
|
|
|
|
proguard_config = "fbjni.pro",
|
|
|
|
visibility = [
|
|
|
|
"PUBLIC",
|
|
|
|
],
|
|
|
|
deps = [
|
2020-03-24 05:18:30 -07:00
|
|
|
PROGUARD_ANNOTATIONS_TARGET,
|
2017-04-26 07:29:50 -07:00
|
|
|
SOLOADER_TARGET,
|
|
|
|
JSR_305_TARGET,
|
|
|
|
],
|
|
|
|
)
|