OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). | 5 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). |
6 { | 6 { |
7 'include_dirs': [ | 7 'include_dirs': [ |
8 '../dm', | 8 '../dm', |
9 '../gm', | 9 '../gm', |
10 '../include/private', | 10 '../include/private', |
11 '../src/core', | 11 '../src/core', |
12 '../src/effects', | 12 '../src/effects', |
13 '../src/images', | 13 '../src/images', |
14 '../src/lazy', | 14 '../src/lazy', |
15 '../src/pipe/utils/', | 15 '../src/pipe/utils/', |
16 '../src/utils', | 16 '../src/utils', |
17 '../src/utils/debugger', | 17 '../src/utils/debugger', |
18 '../tests', | 18 '../tests', |
19 '../tools', | 19 '../tools', |
20 ], | 20 ], |
21 'dependencies': [ | 21 'dependencies': [ |
22 'etc1.gyp:libetc1', | 22 'etc1.gyp:libetc1', |
23 'flags.gyp:flags', | 23 'flags.gyp:flags', |
24 'jsoncpp.gyp:jsoncpp', | 24 'jsoncpp.gyp:jsoncpp', |
25 'libpng.gyp:libpng_static_when_possible', | 25 'libpng.gyp:libpng_static_when_possible', |
26 'skia_lib.gyp:skia_lib', | 26 'skia_lib.gyp:skia_lib', |
27 'svg.gyp:svg', | 27 'svg.gyp:svg', |
| 28 'tools.gyp:bitmap_region_decoder', |
28 'tools.gyp:crash_handler', | 29 'tools.gyp:crash_handler', |
29 'tools.gyp:proc_stats', | 30 'tools.gyp:proc_stats', |
30 'tools.gyp:sk_tool_utils', | 31 'tools.gyp:sk_tool_utils', |
31 'tools.gyp:timer', | 32 'tools.gyp:timer', |
32 'xml.gyp:xml', | 33 'xml.gyp:xml', |
33 'xps.gyp:xps', | 34 'xps.gyp:xps', |
34 ], | 35 ], |
35 'includes': [ | 36 'includes': [ |
36 'gmslides.gypi', | 37 'gmslides.gypi', |
37 'pathops_unittest.gypi', | 38 'pathops_unittest.gypi', |
38 'tests.gypi', | 39 'tests.gypi', |
39 ], | 40 ], |
40 'sources': [ | 41 'sources': [ |
41 '../dm/DM.cpp', | 42 '../dm/DM.cpp', |
42 '../dm/DMSrcSink.cpp', | 43 '../dm/DMSrcSink.cpp', |
43 '../dm/DMJsonWriter.cpp', | 44 '../dm/DMJsonWriter.cpp', |
44 '../gm/gm.cpp', | 45 '../gm/gm.cpp', |
45 | 46 |
46 '../src/pipe/utils/SamplePipeControllers.cpp', | 47 '../src/pipe/utils/SamplePipeControllers.cpp', |
47 '../src/utils/debugger/SkDebugCanvas.cpp', | 48 '../src/utils/debugger/SkDebugCanvas.cpp', |
48 '../src/utils/debugger/SkDrawCommand.cpp', | 49 '../src/utils/debugger/SkDrawCommand.cpp', |
49 '../src/utils/debugger/SkObjectParser.cpp', | 50 '../src/utils/debugger/SkObjectParser.cpp', |
50 ], | 51 ], |
51 'conditions': [ | 52 'conditions': [ |
52 [ 'skia_gpu == 1', { | 53 [ 'skia_gpu == 1', { |
53 'dependencies': [ 'gputest.gyp:skgputest' ], | 54 'dependencies': [ 'gputest.gyp:skgputest' ], |
54 }], | 55 }], |
55 ], | 56 ], |
56 } | 57 } |
OLD | NEW |