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 # vim: set expandtab tabstop=4 shiftwidth=4 | 2 # vim: set expandtab tabstop=4 shiftwidth=4 |
3 { | 3 { |
4 'includes': [ 'apptype_console.gypi' ], | 4 'includes': [ 'apptype_console.gypi' ], |
5 | 5 |
6 'targets': [{ | 6 'targets': [{ |
7 'target_name': 'dm', | 7 'target_name': 'dm', |
8 'type': 'executable', | 8 'type': 'executable', |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '../bench', | 10 '../bench', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 '../src/utils/debugger/SkDrawCommand.cpp', | 54 '../src/utils/debugger/SkDrawCommand.cpp', |
55 '../src/utils/debugger/SkObjectParser.cpp', | 55 '../src/utils/debugger/SkObjectParser.cpp', |
56 ], | 56 ], |
57 'dependencies': [ | 57 'dependencies': [ |
58 'etc1.gyp:libetc1', | 58 'etc1.gyp:libetc1', |
59 'flags.gyp:flags', | 59 'flags.gyp:flags', |
60 'gputest.gyp:skgputest', | 60 'gputest.gyp:skgputest', |
61 'jsoncpp.gyp:jsoncpp', | 61 'jsoncpp.gyp:jsoncpp', |
62 'skia_lib.gyp:skia_lib', | 62 'skia_lib.gyp:skia_lib', |
63 'tools.gyp:crash_handler', | 63 'tools.gyp:crash_handler', |
| 64 'tools.gyp:sk_tool_utils', |
64 ], | 65 ], |
65 'conditions': [ | 66 'conditions': [ |
66 ['skia_android_framework', { | 67 ['skia_android_framework', { |
67 'libraries': [ '-lskia' ], | 68 'libraries': [ '-lskia' ], |
68 }], | 69 }], |
69 ['skia_poppler_enabled', { | 70 ['skia_poppler_enabled', { |
70 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], | 71 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], |
71 'defines': [ 'SK_BUILD_POPPLER' ], | 72 'defines': [ 'SK_BUILD_POPPLER' ], |
72 'dependencies': [ 'poppler.gyp:*' ], | 73 'dependencies': [ 'poppler.gyp:*' ], |
73 }], | 74 }], |
74 ], | 75 ], |
75 }] | 76 }] |
76 } | 77 } |
OLD | NEW |