mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
7f8c2985a8
Reviewed By: gkassabli Differential Revision: D4284681 fbshipit-source-id: f0c6855c2c6e4389b7867f48f72cbb697830fc5a
19 lines
325 B
Python
19 lines
325 B
Python
cxx_library(
|
|
name = 'yoga',
|
|
force_static = True,
|
|
srcs = glob(['yoga/*.c']),
|
|
header_namespace = '',
|
|
compiler_flags = [
|
|
'-fno-omit-frame-pointer',
|
|
'-fexceptions',
|
|
'-Wall',
|
|
'-Werror',
|
|
'-std=c99',
|
|
'-O3',
|
|
],
|
|
exported_headers = glob(['yoga/*.h']),
|
|
deps = [
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|