Files
react-native/ReactCommon/microprofiler/BUCK
T
Kevin Gozali 164d47f30a label react-native-github targets
Summary:
For internal code attribution.

Changelog: [Internal]

Reviewed By: zlern2k

Differential Revision: D21468924

fbshipit-source-id: 59cd2a52e0ae46bedbf54816820a5f40b684da8b
2020-05-08 00:36:17 -07:00

29 lines
668 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",
],
fbandroid_labels = ["supermodule:android/default/public.react_native.infra"],
fbobjc_labels = ["supermodule:ios/default/public.react_native.infra"],
force_static = True,
visibility = [
"PUBLIC",
],
deps = [
GLOG_DEP,
],
)