mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1f78ea326e
Differential Revision: D4326949 fbshipit-source-id: d0e8d7c3a046a89e5794be602a406ea914de50d1
20 lines
532 B
Python
20 lines
532 B
Python
include_defs('//ReactAndroid/DEFS')
|
|
|
|
java_library(
|
|
name = 'processing',
|
|
srcs = glob(['*.java']),
|
|
source = '7',
|
|
target = '7',
|
|
deps = [
|
|
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
|
react_native_dep('third-party/java/javapoet:javapoet'),
|
|
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
|
react_native_target('java/com/facebook/react/bridge:bridge'),
|
|
react_native_target('java/com/facebook/react/uimanager/annotations:annotations'),
|
|
],
|
|
visibility=[
|
|
'PUBLIC'
|
|
]
|
|
)
|
|
|