mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a45e6a8b5f
Summary: #nocancel Reviewed By: fkgozali Differential Revision: D17747685 fbshipit-source-id: 9bad072d3549959528612c2f0329799853d4b675
28 lines
574 B
Python
28 lines
574 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++14",
|
|
"-fexceptions",
|
|
"-fno-data-sections",
|
|
],
|
|
force_static = True,
|
|
labels = ["supermodule:ios/isolation/infra.react_native"],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|