2018-08-29 13:13:29 -07:00
|
|
|
load("//tools/build_defs/oss:rn_defs.bzl", "cxx_library")
|
2018-01-12 07:49:15 -08:00
|
|
|
|
2018-03-27 15:12:11 -07:00
|
|
|
cxx_library(
|
2017-02-24 21:40:45 -08:00
|
|
|
name = "yoga",
|
2017-11-21 10:10:30 -08:00
|
|
|
srcs = glob(["yoga/*.cpp"]),
|
|
|
|
header_namespace = "",
|
|
|
|
exported_headers = glob(["yoga/*.h"]),
|
2017-02-24 21:40:45 -08:00
|
|
|
compiler_flags = [
|
|
|
|
"-fno-omit-frame-pointer",
|
|
|
|
"-fexceptions",
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
2017-11-21 10:10:30 -08:00
|
|
|
"-std=c++1y",
|
2017-02-24 21:40:45 -08:00
|
|
|
"-O3",
|
|
|
|
],
|
|
|
|
force_static = True,
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
],
|
2016-11-21 06:16:27 -08:00
|
|
|
)
|