Clean up unused macros after consolidation
Reviewed By: mzlee Differential Revision: D6954781 fbshipit-source-id: 0ec78e6f7f2780951ac008e9b12f41cfd5441ed5
This commit is contained in:
parent
1a790f8703
commit
e233646d09
|
@ -1,4 +1,4 @@
|
|||
load("//ReactNative:DEFS.bzl", "rn_android_resource", "react_native_target", "android_react_native_target", "apple_react_native_target")
|
||||
load("//ReactNative:DEFS.bzl", "rn_android_resource", "react_native_target")
|
||||
|
||||
rn_android_resource(
|
||||
name = "devsupport",
|
||||
|
@ -6,8 +6,6 @@ rn_android_resource(
|
|||
res = "devsupport",
|
||||
visibility = [
|
||||
react_native_target("java/com/facebook/react/devsupport/..."),
|
||||
android_react_native_target("java/com/facebook/react/devsupport/..."),
|
||||
apple_react_native_target("java/com/facebook/react/devsupport/..."),
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -42,14 +42,6 @@ def react_native_target(path):
|
|||
return '//ReactAndroid/src/main/' + path
|
||||
|
||||
|
||||
def android_react_native_target(path):
|
||||
return react_native_target(path)
|
||||
|
||||
|
||||
def apple_react_native_target(path):
|
||||
return react_native_target(path)
|
||||
|
||||
|
||||
# Example: react_native_xplat_target('bridge:bridge')
|
||||
def react_native_xplat_target(path):
|
||||
return '//ReactCommon/' + path
|
||||
|
|
Loading…
Reference in New Issue