mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-09 22:50:21 +08:00
Reviewed By: astreet Differential Revision: D2590921 fb-gh-sync-id: cf870c96f772c06e1a8b69014ebd906978ea8c00
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
include_defs('//ReactAndroid/DEFS')
|
|
|
|
android_library(
|
|
name = 'react',
|
|
srcs = glob(['*.java']),
|
|
deps = [
|
|
'//libraries/fbcore/src/main/java/com/facebook/common/logging:logging',
|
|
react_native_target('java/com/facebook/react/bridge:bridge'),
|
|
react_native_target('java/com/facebook/react/common:common'),
|
|
react_native_target('java/com/facebook/react/devsupport:devsupport'),
|
|
react_native_target('java/com/facebook/react/modules/core:core'),
|
|
react_native_target('java/com/facebook/react/modules/debug:debug'),
|
|
react_native_target('java/com/facebook/react/modules/systeminfo:systeminfo'),
|
|
react_native_target('java/com/facebook/react/modules/toast:toast'),
|
|
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
|
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
|
|
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
|
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
|
],
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|
|
|
|
project_config(
|
|
src_target = ':react',
|
|
)
|