mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Differential Revision: D40610875 fbshipit-source-id: 0fb0db845c041265faf0a06877d05ffbb55ba648
24 lines
604 B
Python
24 lines
604 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "rn_android_library")
|
|
|
|
oncall("react_native")
|
|
|
|
rn_android_library(
|
|
name = "holder",
|
|
srcs = glob(["*.java"]),
|
|
autoglob = False,
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
"supermodule:xplat/default/public.react_native.infra",
|
|
],
|
|
language = "JAVA",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("third-party/java/jsr-305:jsr-305"),
|
|
],
|
|
exported_deps = [
|
|
react_native_dep("java/com/facebook/debug/debugoverlay/model:model"),
|
|
],
|
|
)
|