@build-break fix usage of old RN DEFS.bzl path
Differential Revision: D9563036 fbshipit-source-id: ab87f479f45209b96ce82c3607c45fdfd622d099
This commit is contained in:
parent
2515e4861a
commit
685b15679f
|
@ -1,6 +1,6 @@
|
||||||
# BUILD FILE SYNTAX: SKYLARK
|
# BUILD FILE SYNTAX: SKYLARK
|
||||||
load(
|
load(
|
||||||
"@xplat//ReactNative:DEFS.bzl",
|
"@fbsource//tools/build_defs/oss:rn_defs.bzl",
|
||||||
"react_native_dep",
|
"react_native_dep",
|
||||||
"react_native_integration_tests_target",
|
"react_native_integration_tests_target",
|
||||||
"react_native_target",
|
"react_native_target",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# BUILD FILE SYNTAX: SKYLARK
|
# BUILD FILE SYNTAX: SKYLARK
|
||||||
load(
|
load(
|
||||||
"@xplat//ReactNative:DEFS.bzl",
|
"@fbsource//tools/build_defs/oss:rn_defs.bzl",
|
||||||
"react_native_dep",
|
"react_native_dep",
|
||||||
"react_native_integration_tests_target",
|
"react_native_integration_tests_target",
|
||||||
"react_native_target",
|
"react_native_target",
|
||||||
|
@ -8,19 +8,19 @@ load(
|
||||||
)
|
)
|
||||||
|
|
||||||
rn_android_library(
|
rn_android_library(
|
||||||
name = "core",
|
name = "core",
|
||||||
srcs = glob(["*.java"]),
|
srcs = glob(["*.java"]),
|
||||||
deps = [
|
deps = [
|
||||||
react_native_dep("java/com/facebook/fbreact/testing:testing"),
|
react_native_dep("java/com/facebook/fbreact/testing:testing"),
|
||||||
react_native_dep("third-party/java/espresso:espresso"),
|
react_native_dep("third-party/java/espresso:espresso"),
|
||||||
react_native_dep("third-party/java/fest:fest"),
|
react_native_dep("third-party/java/fest:fest"),
|
||||||
react_native_dep("third-party/java/junit:junit"),
|
react_native_dep("third-party/java/junit:junit"),
|
||||||
react_native_dep("third-party/java/testing-support-lib:testing-support-lib"),
|
react_native_dep("third-party/java/testing-support-lib:testing-support-lib"),
|
||||||
react_native_integration_tests_target("java/com/facebook/react/testing:testing"),
|
react_native_integration_tests_target("java/com/facebook/react/testing:testing"),
|
||||||
react_native_integration_tests_target("java/com/facebook/react/testing/rule:rule"),
|
react_native_integration_tests_target("java/com/facebook/react/testing/rule:rule"),
|
||||||
react_native_target("java/com/facebook/react:react"),
|
react_native_target("java/com/facebook/react:react"),
|
||||||
react_native_target("java/com/facebook/react/bridge:bridge"),
|
react_native_target("java/com/facebook/react/bridge:bridge"),
|
||||||
react_native_target("java/com/facebook/react/shell:shell"),
|
react_native_target("java/com/facebook/react/shell:shell"),
|
||||||
react_native_target("java/com/facebook/react/uimanager:uimanager"),
|
react_native_target("java/com/facebook/react/uimanager:uimanager"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue