mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
bef7967f9a
Reviewed By: pakoito Differential Revision: D6531199 fbshipit-source-id: ed1ae9e2f0c19e7656cd022e438693798320e55a
28 lines
523 B
Python
28 lines
523 B
Python
include_defs("//ReactCommon/DEFS")
|
|
|
|
EXPORTED_HEADERS = [
|
|
"InspectorInterfaces.h",
|
|
]
|
|
|
|
rn_xplat_cxx_library(
|
|
name = "jsinspector",
|
|
srcs = glob(
|
|
["*.cpp"],
|
|
),
|
|
headers = glob(
|
|
["*.h"],
|
|
excludes = EXPORTED_HEADERS,
|
|
),
|
|
header_namespace = "jsinspector",
|
|
exported_headers = EXPORTED_HEADERS,
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-fexceptions",
|
|
"-std=c++1y",
|
|
],
|
|
fbandroid_preferred_linkage = "shared",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
)
|