Emil Sjolander 7f8c2985a8 Rename directories
Reviewed By: gkassabli

Differential Revision: D4284681

fbshipit-source-id: f0c6855c2c6e4389b7867f48f72cbb697830fc5a
2016-12-07 05:14:12 -08:00

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'],
)