mirror of
https://github.com/status-im/react-native.git
synced 2025-01-18 05:23:26 +00:00
c8e98bbaf5
Summary: Fix for android github CI. Github CI doesn't work without this change. CI passes. [INTERNAL] Android CI fix. Closes https://github.com/facebook/react-native/pull/17551 Differential Revision: D6707477 Pulled By: hramos fbshipit-source-id: f98515234da3b90ee3233523bcd7cc67ed82c1b4
21 lines
418 B
Python
21 lines
418 B
Python
include_defs("//ReactCommon/DEFS")
|
|
|
|
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 = [
|
|
],
|
|
)
|