Home | History | Annotate | Download | only in gyp
      1 # GYP file to build flag parser
      2 #
      3 {
      4   'targets': [
      5     {
      6       'target_name': 'flags',
      7       'type': 'static_library',
      8       'sources': [
      9         '../tools/flags/SkCommandLineFlags.h',
     10         '../tools/flags/SkCommandLineFlags.cpp',
     11       ],
     12       'dependencies': [
     13         'skia_lib.gyp:skia_lib',
     14       ],
     15       'direct_dependent_settings': {
     16         'include_dirs': [
     17           '../tools/flags',
     18         ],
     19       }
     20     },
     21   ],
     22 }
     23