19 lines
340 B
Python
19 lines
340 B
Python
|
cxx_library(
|
||
|
name = 'CSSLayout',
|
||
|
force_static = True,
|
||
|
srcs = glob(['CSSLayout/*.c']),
|
||
|
header_namespace = '',
|
||
|
compiler_flags = [
|
||
|
'-fno-omit-frame-pointer',
|
||
|
'-fexceptions',
|
||
|
'-Wall',
|
||
|
'-Werror',
|
||
|
'-std=c99',
|
||
|
'-O3',
|
||
|
],
|
||
|
exported_headers = glob(['CSSLayout/*.h']),
|
||
|
deps = [
|
||
|
],
|
||
|
visibility = ['PUBLIC'],
|
||
|
)
|