mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 11:34:23 +00:00
2515e4861a
Reviewed By: mzlee Differential Revision: D9553765 fbshipit-source-id: cb65081668ea2726f24d2c9c02661e859cc7a994
27 lines
511 B
Python
27 lines
511 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "GLOG_DEP", "cxx_library")
|
|
|
|
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,
|
|
],
|
|
)
|