forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
27 lines (26 loc) · 586 Bytes
/
BUCK
File metadata and controls
27 lines (26 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
],
)