mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
d674d48a7b
Reviewed By: mzlee, dinhviethoa Differential Revision: D6439498 fbshipit-source-id: ec847595afdd79434e48652d237d2533bbd2cad2
26 lines
446 B
Python
26 lines
446 B
Python
include_defs("//ReactCommon/DEFS")
|
|
|
|
cxx_library(
|
|
name = "microprofiler",
|
|
srcs = [
|
|
"MicroProfiler.cpp",
|
|
],
|
|
header_namespace = "microprofiler",
|
|
exported_headers = [
|
|
"MicroProfiler.h",
|
|
],
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-std=c++11",
|
|
"-fexceptions",
|
|
],
|
|
force_static = True,
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|