@build-break fix usage of old RN DEFS.bzl path

Differential Revision: D9563036

fbshipit-source-id: ab87f479f45209b96ce82c3607c45fdfd622d099
This commit is contained in:
Jonathan Kim 2018-08-29 14:20:40 -07:00 committed by Facebook Github Bot
parent 2515e4861a
commit 685b15679f
2 changed files with 17 additions and 17 deletions

View File

@ -1,6 +1,6 @@
# BUILD FILE SYNTAX: SKYLARK
load(
"@xplat//ReactNative:DEFS.bzl",
"@fbsource//tools/build_defs/oss:rn_defs.bzl",
"react_native_dep",
"react_native_integration_tests_target",
"react_native_target",

View File

@ -1,6 +1,6 @@
# BUILD FILE SYNTAX: SKYLARK
load(
"@xplat//ReactNative:DEFS.bzl",
"@fbsource//tools/build_defs/oss:rn_defs.bzl",
"react_native_dep",
"react_native_integration_tests_target",
"react_native_target",
@ -8,19 +8,19 @@ load(
)
rn_android_library(
name = "core",
srcs = glob(["*.java"]),
deps = [
react_native_dep("java/com/facebook/fbreact/testing:testing"),
react_native_dep("third-party/java/espresso:espresso"),
react_native_dep("third-party/java/fest:fest"),
react_native_dep("third-party/java/junit:junit"),
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/rule:rule"),
react_native_target("java/com/facebook/react:react"),
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/uimanager:uimanager"),
],
name = "core",
srcs = glob(["*.java"]),
deps = [
react_native_dep("java/com/facebook/fbreact/testing:testing"),
react_native_dep("third-party/java/espresso:espresso"),
react_native_dep("third-party/java/fest:fest"),
react_native_dep("third-party/java/junit:junit"),
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/rule:rule"),
react_native_target("java/com/facebook/react:react"),
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/uimanager:uimanager"),
],
)