mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
4f2cc42a2d
Reviewed By: mzlee Differential Revision: D6605611 fbshipit-source-id: baa33947319a27b95020924d177a9398a276dabe
16 lines
397 B
Python
16 lines
397 B
Python
load("//ReactNative:DEFS", "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"),
|
|
],
|
|
)
|