Files
react-native/ReactAndroid/src/test/java/com/facebook/common/logging/BUCK
T
Jonathan Kim 4f2cc42a2d Make xplat react native files buildable
Reviewed By: mzlee

Differential Revision: D6605611

fbshipit-source-id: baa33947319a27b95020924d177a9398a276dabe
2018-01-21 22:05:05 -08:00

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"),
],
)