Taras Tsugrii ba31d29dc9 Replace native cxx_library with fb-specific macros.
Reviewed By: adamjernst

Differential Revision: D6618153

fbshipit-source-id: 188e2ca3cc78efad6e71f0a22547e26abf2f62e1
2017-12-21 08:58:50 -08:00

26 lines
455 B
Python

include_defs("//ReactCommon/DEFS")
fb_xplat_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,
],
)