mirror of
https://github.com/status-im/react-native.git
synced 2025-01-15 12:05:06 +00:00
5a24ea0b42
Reviewed By: javache, skotchvail Differential Revision: D3946452 fbshipit-source-id: c6354f529bec2f9635a0ecf5f65e21dc4e17b1e4
25 lines
415 B
Python
25 lines
415 B
Python
cxx_library(
|
|
name = 'microprofiler',
|
|
force_static = True,
|
|
compiler_flags = [
|
|
'-Wall',
|
|
'-Werror',
|
|
'-std=c++11',
|
|
'-fexceptions',
|
|
],
|
|
xcode_public_headers_symlinks = True,
|
|
exported_headers = [
|
|
'MicroProfiler.h',
|
|
],
|
|
srcs = [
|
|
'MicroProfiler.cpp',
|
|
],
|
|
header_namespace = 'microprofiler',
|
|
deps = [
|
|
'//xplat/third-party/glog:glog',
|
|
],
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|