| 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/', | |
| 16 '../src/utils', | 15 '../src/utils', |
| 17 '../src/utils/debugger', | 16 '../src/utils/debugger', |
| 18 '../tests', | 17 '../tests', |
| 19 ], | 18 ], |
| 20 'dependencies': [ | 19 'dependencies': [ |
| 21 'etc1.gyp:libetc1', | 20 'etc1.gyp:libetc1', |
| 22 'flags.gyp:flags', | 21 'flags.gyp:flags', |
| 23 'jsoncpp.gyp:jsoncpp', | 22 'jsoncpp.gyp:jsoncpp', |
| 24 'libpng.gyp:libpng', | 23 'libpng.gyp:libpng', |
| 25 'skia_lib.gyp:skia_lib', | 24 'skia_lib.gyp:skia_lib', |
| 26 'svg.gyp:svg', | 25 'svg.gyp:svg', |
| 27 'tools.gyp:crash_handler', | 26 'tools.gyp:crash_handler', |
| 28 'tools.gyp:proc_stats', | 27 'tools.gyp:proc_stats', |
| 29 'tools.gyp:sk_tool_utils', | 28 'tools.gyp:sk_tool_utils', |
| 30 'tools.gyp:timer', | 29 'tools.gyp:timer', |
| 31 'xml.gyp:xml', | 30 'xml.gyp:xml', |
| 32 'xps.gyp:xps', | 31 'xps.gyp:xps', |
| 33 ], | 32 ], |
| 34 'includes': [ | 33 'includes': [ |
| 35 'gmslides.gypi', | 34 'gmslides.gypi', |
| 36 'pathops_unittest.gypi', | 35 'pathops_unittest.gypi', |
| 37 'tests.gypi', | 36 'tests.gypi', |
| 38 ], | 37 ], |
| 39 'sources': [ | 38 'sources': [ |
| 40 '../dm/DM.cpp', | 39 '../dm/DM.cpp', |
| 41 '../dm/DMSrcSink.cpp', | 40 '../dm/DMSrcSink.cpp', |
| 42 '../dm/DMJsonWriter.cpp', | 41 '../dm/DMJsonWriter.cpp', |
| 43 '../gm/gm.cpp', | 42 '../gm/gm.cpp', |
| 44 | 43 |
| 45 '../src/pipe/utils/SamplePipeControllers.cpp', | |
| 46 '../src/utils/debugger/SkDebugCanvas.cpp', | 44 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 47 '../src/utils/debugger/SkDrawCommand.cpp', | 45 '../src/utils/debugger/SkDrawCommand.cpp', |
| 48 '../src/utils/debugger/SkObjectParser.cpp', | 46 '../src/utils/debugger/SkObjectParser.cpp', |
| 49 ], | 47 ], |
| 50 'conditions': [ | 48 'conditions': [ |
| 51 [ 'skia_gpu == 1', { | 49 [ 'skia_gpu == 1', { |
| 52 'dependencies': [ 'gputest.gyp:skgputest' ], | 50 'dependencies': [ 'gputest.gyp:skgputest' ], |
| 53 }], | 51 }], |
| 54 ], | 52 ], |
| 55 } | 53 } |
| OLD | NEW |