2018-02-08 09:36:45 -08:00
|
|
|
load("//ReactNative:DEFS.bzl", "cxx_library", "GLOG_DEP")
|
2017-03-23 11:57:18 -07:00
|
|
|
|
2018-01-21 21:54:01 -08:00
|
|
|
cxx_library(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "microprofiler",
|
|
|
|
srcs = [
|
|
|
|
"MicroProfiler.cpp",
|
|
|
|
],
|
2017-11-29 20:28:17 -08:00
|
|
|
header_namespace = "microprofiler",
|
|
|
|
exported_headers = [
|
|
|
|
"MicroProfiler.h",
|
|
|
|
],
|
2017-02-24 21:40:45 -08:00
|
|
|
compiler_flags = [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
"-std=c++11",
|
|
|
|
"-fexceptions",
|
2018-03-12 06:31:27 -07:00
|
|
|
"-fno-data-sections",
|
2017-02-24 21:40:45 -08:00
|
|
|
],
|
|
|
|
force_static = True,
|
|
|
|
visibility = [
|
|
|
|
"PUBLIC",
|
|
|
|
],
|
|
|
|
deps = [
|
2017-03-23 11:57:18 -07:00
|
|
|
GLOG_DEP,
|
2017-02-24 21:40:45 -08:00
|
|
|
],
|
2016-08-02 07:32:59 -07:00
|
|
|
)
|