mirror of
https://github.com/status-im/react-native.git
synced 2025-02-24 07:08:27 +00:00
Reviewed By: adamjernst Differential Revision: D6618153 fbshipit-source-id: 188e2ca3cc78efad6e71f0a22547e26abf2f62e1
19 lines
382 B
Python
19 lines
382 B
Python
fb_xplat_cxx_library(
|
|
name = "yoga",
|
|
srcs = glob(["yoga/*.cpp"]),
|
|
header_namespace = "",
|
|
exported_headers = glob(["yoga/*.h"]),
|
|
compiler_flags = [
|
|
"-fno-omit-frame-pointer",
|
|
"-fexceptions",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-std=c++1y",
|
|
"-O3",
|
|
],
|
|
force_static = True,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
],
|
|
)
|