mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-07 09:27:29 +08:00
Reviewed By: adamjernst Differential Revision: D6934209 fbshipit-source-id: 59f50b739482a53473c157f9e0183024dc88dc67
14 lines
506 B
Python
14 lines
506 B
Python
load("//ReactNative:DEFS.bzl", "rn_android_library", "react_native_dep")
|
|
|
|
rn_android_library(
|
|
name = "yoga",
|
|
srcs = glob(["yoga/*.java"]),
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
|
|
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
|
|
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
|
|
react_native_dep("third-party/java/jsr-305:jsr-305"),
|
|
],
|
|
)
|