mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-12 22:39:06 +08:00
Reviewed By: adamjernst Differential Revision: D6934209 fbshipit-source-id: 59f50b739482a53473c157f9e0183024dc88dc67
16 lines
401 B
Python
16 lines
401 B
Python
load("//ReactNative:DEFS.bzl", "rn_android_library", "react_native_dep")
|
|
|
|
rn_android_library(
|
|
name = "logging",
|
|
srcs = glob(["**/*.java"]),
|
|
exported_deps = [
|
|
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("third-party/java/jsr-305:jsr-305"),
|
|
],
|
|
)
|