mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
19dd9a2ce6
Differential Revision: D7194366 fbshipit-source-id: 676f2db2e493230b8d9698941f003ec4e96f15ea
27 lines
499 B
Python
27 lines
499 B
Python
load("//ReactNative:DEFS.bzl", "cxx_library", "GLOG_DEP")
|
|
|
|
cxx_library(
|
|
name = "microprofiler",
|
|
srcs = [
|
|
"MicroProfiler.cpp",
|
|
],
|
|
header_namespace = "microprofiler",
|
|
exported_headers = [
|
|
"MicroProfiler.h",
|
|
],
|
|
compiler_flags = [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-std=c++11",
|
|
"-fexceptions",
|
|
"-fno-data-sections",
|
|
],
|
|
force_static = True,
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|