mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3d3db71763
Summary: This diff checks in the OSS view manager interfaces and delegates generated by the JS codegen. This is a temporary workaround since we don't have the JS codegen running in open source. Reviewed By: fkgozali Differential Revision: D17104816 fbshipit-source-id: 848afc081785c9a78891d3dc0740ebe858eb8891
18 lines
519 B
Python
18 lines
519 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "react_native_target", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "viewmanagers",
|
|
srcs = glob(["*.java"]),
|
|
is_androidx = True,
|
|
provided_deps = [
|
|
react_native_dep("third-party/android/androidx:annotation"),
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_target("java/com/facebook/react/bridge:bridge"),
|
|
react_native_target("java/com/facebook/react/uimanager:uimanager"),
|
|
],
|
|
)
|