| OLD | NEW |
| 1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). | 1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). |
| 2 { | 2 { |
| 3 'includes': [ 'apptype_console.gypi' ], | 3 'includes': [ 'apptype_console.gypi' ], |
| 4 | 4 |
| 5 'targets': [{ | 5 'targets': [{ |
| 6 'target_name': 'dm', | 6 'target_name': 'dm', |
| 7 'type': 'executable', | 7 'type': 'executable', |
| 8 'includes': [ | 8 'includes': [ |
| 9 'dm.gypi', | 9 'dm.gypi', |
| 10 ], | 10 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 '../dm/DMSrcSinkAndroid.cpp', | 25 '../dm/DMSrcSinkAndroid.cpp', |
| 26 ], | 26 ], |
| 27 }], | 27 }], |
| 28 ['skia_poppler_enabled', { | 28 ['skia_poppler_enabled', { |
| 29 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], | 29 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], |
| 30 'defines': [ 'SK_BUILD_POPPLER' ], | 30 'defines': [ 'SK_BUILD_POPPLER' ], |
| 31 'dependencies': [ 'poppler.gyp:*' ], | 31 'dependencies': [ 'poppler.gyp:*' ], |
| 32 }], | 32 }], |
| 33 ['skia_os == "win"', |
| 34 { 'dependencies': ['xps.gyp:xps',], }, |
| 35 { 'dependencies': ['xps.gyp:xps_none',], } |
| 36 ], |
| 33 ], | 37 ], |
| 34 }] | 38 }] |
| 35 } | 39 } |
| OLD | NEW |