mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-10 09:12:46 +08:00
20 lines
512 B
Python
20 lines
512 B
Python
include_defs('//ReactAndroid/DEFS')
|
|
|
|
STANDARD_TEST_SRCS = [
|
|
'**/*Test.java',
|
|
]
|
|
|
|
android_library(
|
|
name = 'testhelpers',
|
|
srcs = glob(['**/*.java'], excludes = STANDARD_TEST_SRCS),
|
|
deps = [
|
|
react_native_target('java/com/facebook/react/bridge:bridge'),
|
|
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
|
react_native_dep('third-party/java/mockito:mockito'),
|
|
react_native_dep('third-party/java/robolectric3/robolectric:robolectric'),
|
|
],
|
|
visibility = [
|
|
'PUBLIC'
|
|
],
|
|
)
|