mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
979c01ed2d
Differential Revision: D7417644 fbshipit-source-id: 2641c1abc1083db83cbb304f8dcc7b781e329041
21 lines
420 B
Python
21 lines
420 B
Python
load("//ReactNative:DEFS.bzl", "cxx_library")
|
|
|
|
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 = [
|
|
],
|
|
)
|