mirror of
https://github.com/status-im/react-native.git
synced 2025-01-15 12:05:06 +00:00
d67258eb91
Reviewed By: mhorowitz Differential Revision: D3507905 fbshipit-source-id: cbe55495a991bf6eef961319ba8b219e660dce05
25 lines
598 B
Python
25 lines
598 B
Python
include_defs('//ReactAndroid/DEFS')
|
|
include_defs('//ReactAndroid/TEST_DEFS')
|
|
|
|
jni_instrumentation_test_lib(
|
|
name = 'tests',
|
|
class_under_test = 'com/facebook/react/XplatBridgeTest',
|
|
soname = 'libxplat-bridge.so',
|
|
srcs = [
|
|
'CxxMessageQueueTest.cpp',
|
|
'value.cpp',
|
|
'methodcall.cpp',
|
|
'jsclogging.cpp',
|
|
'jscexecutor.cpp',
|
|
],
|
|
compiler_flags = [
|
|
'-fexceptions',
|
|
],
|
|
deps = [
|
|
'//native/third-party/android-ndk:android',
|
|
'//xplat/third-party/gmock:gtest',
|
|
react_native_xplat_target('cxxreact:bridge'),
|
|
],
|
|
visibility = ['//instrumentation_tests/...'],
|
|
)
|