mirror of
https://github.com/status-im/react-native.git
synced 2025-01-11 01:56:26 +00:00
465a68db1f
Reviewed By: dinhviethoa Differential Revision: D5321259 fbshipit-source-id: b07ff4a01280251deb2113a62197d96d5c2e37a1
26 lines
446 B
Python
26 lines
446 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",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|