mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 02:35:41 +00:00
d7ab9496bc
Reviewed By: gkassabli Differential Revision: D6271299 fbshipit-source-id: 66c0e54ccf019d72d1fd0b4d117826e4e84fdc89
19 lines
373 B
Python
19 lines
373 B
Python
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 = [
|
|
],
|
|
)
|