blob: aa83ea9e0160c6bc533f46ad2424dc02825342bd [file] [log] [blame]
scroggo@google.com09fd4d22013-03-20 14:20:18 +00001# GYP file to build flag parser
2#
3{
4 'targets': [
5 {
6 'target_name': 'flags',
7 'type': 'static_library',
8 'sources': [
scroggo@google.comd9ba9a02013-03-21 19:43:15 +00009 '../tools/flags/SkCommandLineFlags.h',
10 '../tools/flags/SkCommandLineFlags.cpp',
scroggo@google.com09fd4d22013-03-20 14:20:18 +000011 ],
12 'dependencies': [
13 'skia_base_libs.gyp:skia_base_libs',
14 'core.gyp:core',
15 ],
16 'direct_dependent_settings': {
17 'include_dirs': [
scroggo@google.comd9ba9a02013-03-21 19:43:15 +000018 '../tools/flags',
scroggo@google.com09fd4d22013-03-20 14:20:18 +000019 ],
20 }
21 },
22 ],
23}
24
25# Local Variables:
26# tab-width:2
27# indent-tabs-mode:nil
28# End:
29# vim: set expandtab tabstop=2 shiftwidth=2: