mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
b2d4c2e255
Reviewed By: mhorowitz Differential Revision: D3250498 fbshipit-source-id: 4e32153bcf07f6362f55fa558c22551140b34451
20 lines
466 B
Python
20 lines
466 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',
|
|
],
|
|
compiler_flags = [
|
|
'-fexceptions',
|
|
],
|
|
deps = [
|
|
'//xplat/third-party/gmock:gtest',
|
|
react_native_xplat_target('cxxreact:bridge'),
|
|
],
|
|
visibility = ['//instrumentation_tests/...'],
|
|
)
|