Adam Ernst 47d2cfeac5 Whitelist some stuff in React
Reviewed By: mzlee

Differential Revision: D4731968

fbshipit-source-id: 1d1ae12a50beef4cd024a467427ec3b6cd446f4c
2017-03-19 14:01:09 -07:00

26 lines
536 B
Python

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",
labels = ["accounts_for_platform_and_build_mode_flags"],
visibility = [
"PUBLIC",
],
xcode_public_headers_symlinks = True,
deps = [
"//xplat/third-party/glog:glog",
],
)