mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1a7682b2a1
Reviewed By: yfeldblum Differential Revision: D8073585 fbshipit-source-id: 12322aebc09b89d5af9cc257b16c1bc0fbb066c1
13 lines
284 B
Python
13 lines
284 B
Python
load("//ReactNative:DEFS.bzl", "react_native_target", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "util",
|
|
srcs = glob(["**/*.java"]),
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_target("java/com/facebook/react/bridge:bridge"),
|
|
],
|
|
)
|