2017-04-26 07:29:50 -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.
|
2017-04-26 07:29:50 -07:00
|
|
|
|
2018-05-20 23:06:59 -07:00
|
|
|
load("//:yoga_defs.bzl", "JSR_305_TARGET", "PROGRUARD_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 = [
|
|
|
|
PROGRUARD_ANNOTATIONS_TARGET,
|
|
|
|
SOLOADER_TARGET,
|
|
|
|
JSR_305_TARGET,
|
|
|
|
],
|
|
|
|
)
|