mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-10 22:47:58 +08:00
Reviewed By: bestander Differential Revision: D5078004 fbshipit-source-id: 79c66cedeeb682d8bb4e67798b41115899fd1c81
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
include_defs("//ReactAndroid/DEFS")
|
|
|
|
android_library(
|
|
name = "packagerconnection",
|
|
srcs = glob(
|
|
["**/*.java"],
|
|
excludes = ["SamplingProfilerPackagerMethod.java"] if IS_OSS_BUILD else [],
|
|
),
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("java/com/facebook/jni:jni"),
|
|
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
|
|
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
|
|
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"),
|
|
react_native_dep("third-party/java/okhttp:okhttp3"),
|
|
react_native_dep("third-party/java/okio:okio"),
|
|
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo-moduleless"),
|
|
] + ([react_native_target("jni/packagerconnection:jni")] if not IS_OSS_BUILD else []),
|
|
)
|