mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-01-13 09:20:50 +08:00
Summary: @public This reverts the Yoga/Java storage experiment. I will follow up with any learnings. Reviewed By: pasqualeanatriello Differential Revision: D9168405 fbshipit-source-id: fb227fb9353bd4c4e3bebbe9b04eec1132e532e8
14 lines
506 B
Python
14 lines
506 B
Python
load("//ReactNative:DEFS.bzl", "react_native_dep", "rn_android_library")
|
|
|
|
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"),
|
|
],
|
|
)
|