diff --git a/ReactAndroid/src/main/third-party/android/support/BUCK b/ReactAndroid/src/main/third-party/android/support/BUCK new file mode 100644 index 000000000..13e8bff7c --- /dev/null +++ b/ReactAndroid/src/main/third-party/android/support/BUCK @@ -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"], +)