• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
2{
3    'includes': [ 'apptype_console.gypi' ],
4
5    'targets': [{
6        'target_name': 'dm',
7        'type': 'executable',
8        'includes': [
9          'dm.gypi',
10        ],
11        'conditions': [
12          ['skia_android_framework', {
13              'libraries': [ '-lskia' ],
14          }],
15          ['skia_poppler_enabled', {
16              'sources':      [ '../src/utils/SkPDFRasterizer.cpp' ],
17              'defines':      [ 'SK_BUILD_POPPLER' ],
18              'dependencies': [ 'poppler.gyp:*' ],
19          }],
20        ],
21    }]
22}
23