mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
30822e3923
Summary: Internal build target labeling. Changelog: [Internal] Reviewed By: zlern2k Differential Revision: D20152676 fbshipit-source-id: 89615a0b3a6f3994b18f2c07b86d0ae93e052327
28 lines
586 B
Python
28 lines
586 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",
|
|
],
|
|
fbobjc_labels = ["supermodule:ios/default/public.react_native.infra"],
|
|
force_static = True,
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|