aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/flags.gyp
blob: aa83ea9e0160c6bc533f46ad2424dc02825342bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# GYP file to build flag parser
#
{
  'targets': [
    {
      'target_name': 'flags',
      'type': 'static_library',
      'sources': [
        '../tools/flags/SkCommandLineFlags.h',
        '../tools/flags/SkCommandLineFlags.cpp',
      ],
      'dependencies': [
        'skia_base_libs.gyp:skia_base_libs',
        'core.gyp:core',
      ],
      'direct_dependent_settings': {
        'include_dirs': [
          '../tools/flags',
        ],
      }
    },
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: