Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Side by Side Diff: gyp/dm.gypi

Issue 435673002: DM: only depend on GpuTest when it's a GPU build. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix via gyp instead Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'include_dirs': [ 3 'include_dirs': [
4 '../dm', 4 '../dm',
5 '../gm', 5 '../gm',
6 '../tests', 6 '../tests',
7 '../src/images', 7 '../src/images',
8 '../src/lazy', 8 '../src/lazy',
9 '../src/core', 9 '../src/core',
10 '../src/effects', 10 '../src/effects',
11 '../src/pipe/utils/', 11 '../src/pipe/utils/',
12 '../src/utils', 12 '../src/utils',
13 '../src/utils/debugger', 13 '../src/utils/debugger',
14 '../tools', 14 '../tools',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 'etc1.gyp:libetc1', 17 'etc1.gyp:libetc1',
18 'flags.gyp:flags', 18 'flags.gyp:flags',
19 'gputest.gyp:skgputest',
20 'jsoncpp.gyp:jsoncpp', 19 'jsoncpp.gyp:jsoncpp',
21 'skia_lib.gyp:skia_lib', 20 'skia_lib.gyp:skia_lib',
22 'tools.gyp:crash_handler', 21 'tools.gyp:crash_handler',
23 'tools.gyp:sk_tool_utils', 22 'tools.gyp:sk_tool_utils',
24 ], 23 ],
25 'includes': [ 24 'includes': [
26 'gmslides.gypi', 25 'gmslides.gypi',
27 'pathops_unittest.gypi', 26 'pathops_unittest.gypi',
28 'tests.gypi', 27 'tests.gypi',
29 ], 28 ],
(...skipping 15 matching lines...) Expand all
45 '../dm/DMUtil.cpp', 44 '../dm/DMUtil.cpp',
46 '../dm/DMWriteTask.cpp', 45 '../dm/DMWriteTask.cpp',
47 '../gm/gm.cpp', 46 '../gm/gm.cpp',
48 '../gm/gm_expectations.cpp', 47 '../gm/gm_expectations.cpp',
49 48
50 '../src/pipe/utils/SamplePipeControllers.cpp', 49 '../src/pipe/utils/SamplePipeControllers.cpp',
51 '../src/utils/debugger/SkDebugCanvas.cpp', 50 '../src/utils/debugger/SkDebugCanvas.cpp',
52 '../src/utils/debugger/SkDrawCommand.cpp', 51 '../src/utils/debugger/SkDrawCommand.cpp',
53 '../src/utils/debugger/SkObjectParser.cpp', 52 '../src/utils/debugger/SkObjectParser.cpp',
54 ], 53 ],
54 'conditions': [
55 [ 'skia_gpu == 1', {
56 'dependencies': [ 'gputest.gyp:skgputest' ],
57 }],
58 ],
55 } 59 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698