mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Reviewed By: scottrice Differential Revision: D8163151 fbshipit-source-id: 700a77c09c6ab1bef8fd24a2a3133a4b50e3b3a3
16 lines
401 B
Python
16 lines
401 B
Python
load("//ReactNative:DEFS.bzl", "react_native_dep", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "logging",
|
|
srcs = glob(["**/*.java"]),
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("third-party/java/jsr-305:jsr-305"),
|
|
],
|
|
exported_deps = [
|
|
react_native_dep("libraries/fbcore/src/main/java/com/facebook/common/logging:logging"),
|
|
],
|
|
)
|