Adding new Buck targets

Summary: This will facilitate various cleanups

Differential Revision: D10145594

fbshipit-source-id: 3a360684ba96d5e0466a3e3dc2306c59e6fb50bd
This commit is contained in:
Rick Ratmansky 2018-10-08 09:12:53 -07:00 committed by Facebook Github Bot
parent b8cb8d50a5
commit b3f4872659

View File

@ -0,0 +1,25 @@
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "rn_android_library", "rn_android_resource", "rn_prebuilt_jar")
rn_android_library(
name = "support-v4",
visibility = ["PUBLIC"],
exported_deps = [
react_native_dep("third-party/android/support:support-v4"),
],
)
rn_android_library(
name = "appcompat-v7",
visibility = ["PUBLIC"],
exported_deps = [
react_native_dep("third-party/android/support:support-v4"),
],
)
# a fake genrule so that BUCK files in react native are preseable in fbsource
genrule(
name = "appcompat-res-cmd",
out = ".",
bash = "ls",
visibility = ["PUBLIC"],
)