mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 19:15:05 +00:00
4f2cc42a2d
Reviewed By: mzlee Differential Revision: D6605611 fbshipit-source-id: baa33947319a27b95020924d177a9398a276dabe
37 lines
719 B
Python
37 lines
719 B
Python
load("//ReactNative:DEFS", "rn_xplat_cxx_library")
|
|
|
|
EXPORTED_HEADERS = [
|
|
"InspectorInterfaces.h",
|
|
]
|
|
|
|
rn_xplat_cxx_library(
|
|
name = "jsinspector",
|
|
srcs = glob(
|
|
["*.cpp"],
|
|
),
|
|
headers = subdir_glob(
|
|
[
|
|
("", "*.h"),
|
|
],
|
|
excludes = EXPORTED_HEADERS,
|
|
prefix = "jsinspector",
|
|
),
|
|
header_namespace = "",
|
|
exported_headers = subdir_glob(
|
|
[
|
|
("", header)
|
|
for header in EXPORTED_HEADERS
|
|
],
|
|
prefix = "jsinspector",
|
|
),
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-fexceptions",
|
|
"-std=c++1y",
|
|
],
|
|
fbandroid_preferred_linkage = "shared",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
)
|