2018-01-22 05:54:01 +00:00
|
|
|
load("//ReactNative:DEFS", "rn_xplat_cxx_library")
|
2018-01-12 15:49:15 +00:00
|
|
|
|
|
|
|
rn_xplat_cxx_library(
|
2017-02-25 05:40:45 +00:00
|
|
|
name = "yoga",
|
2017-11-21 18:10:30 +00:00
|
|
|
srcs = glob(["yoga/*.cpp"]),
|
|
|
|
header_namespace = "",
|
|
|
|
exported_headers = glob(["yoga/*.h"]),
|
2017-02-25 05:40:45 +00:00
|
|
|
compiler_flags = [
|
|
|
|
"-fno-omit-frame-pointer",
|
|
|
|
"-fexceptions",
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
2017-11-21 18:10:30 +00:00
|
|
|
"-std=c++1y",
|
2017-02-25 05:40:45 +00:00
|
|
|
"-O3",
|
|
|
|
],
|
|
|
|
force_static = True,
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
],
|
2016-11-21 14:16:27 +00:00
|
|
|
)
|