mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
79a63d040f
Reviewed By: adamjernst Differential Revision: D6934209 fbshipit-source-id: 59f50b739482a53473c157f9e0183024dc88dc67
21 lines
438 B
Python
21 lines
438 B
Python
load("//ReactNative:DEFS.bzl", "rn_xplat_cxx_library")
|
|
|
|
rn_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 = [
|
|
],
|
|
)
|