mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
d6c519bc96
Reviewed By: amnn Differential Revision: D5761937 fbshipit-source-id: de88cf8b959fc855c3c0786f817bb6032491c819
24 lines
454 B
Python
24 lines
454 B
Python
include_defs("//ReactCommon/DEFS")
|
|
|
|
rn_xplat_cxx_library(
|
|
name = "privatedata",
|
|
srcs = glob(["**/*.cpp"]),
|
|
header_namespace = "",
|
|
exported_headers = subdir_glob(
|
|
[
|
|
("", "**/*.h"),
|
|
],
|
|
prefix = "privatedata",
|
|
),
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-fexceptions",
|
|
"-frtti",
|
|
"-fvisibility=hidden",
|
|
"-std=c++1y",
|
|
],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
)
|