blob: 712a04b99847b9e89546c7fdec0382c3856af97e [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': [
9 '../tools/SkFlags.h',
10 '../tools/SkFlags.cpp',
11 ],
12 'dependencies': [
13 'skia_base_libs.gyp:skia_base_libs',
14 'core.gyp:core',
15 ],
16 'direct_dependent_settings': {
17 'include_dirs': [
18 '../tools/',
19 ],
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: