mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 03:26:07 +00:00
dcf3cbeb31
Reviewed By: yangchi Differential Revision: D4739284 fbshipit-source-id: 0ee335df0d114631e5fc60d5d6e51547e5312d39
27 lines
488 B
Python
27 lines
488 B
Python
include_defs("//ReactCommon/DEFS")
|
|
|
|
cxx_library(
|
|
name = "microprofiler",
|
|
srcs = [
|
|
"MicroProfiler.cpp",
|
|
],
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-std=c++11",
|
|
"-fexceptions",
|
|
],
|
|
exported_headers = [
|
|
"MicroProfiler.h",
|
|
],
|
|
force_static = True,
|
|
header_namespace = "microprofiler",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
xcode_public_headers_symlinks = True,
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|