2017-03-23 18:57:18 +00:00
|
|
|
include_defs("//ReactCommon/DEFS")
|
|
|
|
|
2017-12-21 16:39:11 +00:00
|
|
|
fb_xplat_cxx_library(
|
2017-02-25 05:40:45 +00:00
|
|
|
name = "microprofiler",
|
|
|
|
srcs = [
|
|
|
|
"MicroProfiler.cpp",
|
|
|
|
],
|
2017-11-30 04:28:17 +00:00
|
|
|
header_namespace = "microprofiler",
|
|
|
|
exported_headers = [
|
|
|
|
"MicroProfiler.h",
|
|
|
|
],
|
2017-02-25 05:40:45 +00:00
|
|
|
compiler_flags = [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
"-std=c++11",
|
|
|
|
"-fexceptions",
|
|
|
|
],
|
|
|
|
force_static = True,
|
|
|
|
visibility = [
|
|
|
|
"PUBLIC",
|
|
|
|
],
|
|
|
|
deps = [
|
2017-03-23 18:57:18 +00:00
|
|
|
GLOG_DEP,
|
2017-02-25 05:40:45 +00:00
|
|
|
],
|
2016-08-02 14:32:59 +00:00
|
|
|
)
|