mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-16 12:12:20 +08:00
Summary:
This PR does 2 things:
* Have Facebook internal dependencies only be added if `IS_OSS_BUILD` is `True`. This syntax is used in other BUCK files in the codebase.
* `ReactAndroid/src/androidTest/java/com/facebook/react/tests/core/BUCK`
* `ReactAndroid/src/androidTest/java/com/facebook/react/testing/rule/BUCK`
* Add a missing Android dependency to this BUCK file:
* `ReactAndroid/src/main/java/com/facebook/react/BUCK`
As a result, `test_android` is passing again.
Pull Request resolved: https://github.com/facebook/react-native/pull/21083
Differential Revision: D9809808
Pulled By: hramos
fbshipit-source-id: c840ea2892006a88fe13de1b1324746d030ebaf2
44 lines
2.5 KiB
Python
44 lines
2.5 KiB
Python
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "react_native_target", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "react",
|
|
srcs = glob(["*.java"]),
|
|
provided_deps = [
|
|
react_native_dep("third-party/android/support/v4:lib-support-v4"),
|
|
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("java/com/facebook/systrace:systrace"),
|
|
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_target("java/com/facebook/debug/holder:holder"),
|
|
react_native_target("java/com/facebook/debug/tags:tags"),
|
|
react_native_target("java/com/facebook/react/bridge:bridge"),
|
|
react_native_target("java/com/facebook/react/common:common"),
|
|
react_native_target("java/com/facebook/react/devsupport:devsupport"),
|
|
react_native_target("java/com/facebook/react/devsupport:interfaces"),
|
|
react_native_target("java/com/facebook/react/jstasks:jstasks"),
|
|
react_native_target("java/com/facebook/react/module/annotations:annotations"),
|
|
react_native_target("java/com/facebook/react/module/model:model"),
|
|
react_native_target("java/com/facebook/react/modules/appregistry:appregistry"),
|
|
react_native_target("java/com/facebook/react/modules/core:core"),
|
|
react_native_target("java/com/facebook/react/modules/debug:debug"),
|
|
react_native_target("java/com/facebook/react/modules/fabric:fabric"),
|
|
react_native_target("java/com/facebook/react/modules/debug:interfaces"),
|
|
react_native_target("java/com/facebook/react/modules/deviceinfo:deviceinfo"),
|
|
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo"),
|
|
react_native_target("java/com/facebook/react/modules/toast:toast"),
|
|
react_native_target("java/com/facebook/react/uimanager:uimanager"),
|
|
react_native_target("java/com/facebook/react/module/annotations:annotations"),
|
|
react_native_target("java/com/facebook/react/views/imagehelper:imagehelper"),
|
|
],
|
|
exported_deps = [
|
|
react_native_target("java/com/facebook/react/packagerconnection:packagerconnection"),
|
|
],
|
|
)
|