mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
f24b815fe6
Summary: Internal code attribution update. Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D21603406 fbshipit-source-id: c3da1823e26beb0092d97e66d731618c0433a2f7
28 lines
581 B
Python
28 lines
581 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:xplat/default/public.react_native.infra"],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
GLOG_DEP,
|
|
],
|
|
)
|