load("//tools/build_defs:fb_native_wrapper.bzl", "fb_native")
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "rn_android_library")

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
fb_native.genrule(
    name = "appcompat-res-cmd",
    out = ".",
    bash = "ls",
    visibility = ["PUBLIC"],
)
