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

Side by Side Diff: gyp/dm.gypi

Issue 830513004: Simplify skiatest framework. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: mtklein comments Created 5 years, 11 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
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 'jsoncpp.gyp:jsoncpp', 19 'jsoncpp.gyp:jsoncpp',
20 'skia_lib.gyp:skia_lib', 20 'skia_lib.gyp:skia_lib',
21 'tools.gyp:crash_handler', 21 'tools.gyp:crash_handler',
22 'tools.gyp:proc_stats', 22 'tools.gyp:proc_stats',
23 'tools.gyp:sk_tool_utils', 23 'tools.gyp:sk_tool_utils',
24 'tools.gyp:temp_directory',
24 'tools.gyp:timer', 25 'tools.gyp:timer',
25 ], 26 ],
26 'includes': [ 27 'includes': [
27 'gmslides.gypi', 28 'gmslides.gypi',
28 'pathops_unittest.gypi', 29 'pathops_unittest.gypi',
29 'tests.gypi', 30 'tests.gypi',
30 ], 31 ],
31 'sources': [ 32 'sources': [
32 '../dm/DM.cpp', 33 '../dm/DM.cpp',
33 '../dm/DMGpuSupport.cpp', 34 '../dm/DMGpuSupport.cpp',
34 '../dm/DMSrcSink.cpp', 35 '../dm/DMSrcSink.cpp',
35 '../dm/DMJsonWriter.cpp', 36 '../dm/DMJsonWriter.cpp',
36 '../gm/gm.cpp', 37 '../gm/gm.cpp',
37 38
38 '../src/pipe/utils/SamplePipeControllers.cpp', 39 '../src/pipe/utils/SamplePipeControllers.cpp',
39 '../src/utils/debugger/SkDebugCanvas.cpp', 40 '../src/utils/debugger/SkDebugCanvas.cpp',
40 '../src/utils/debugger/SkDrawCommand.cpp', 41 '../src/utils/debugger/SkDrawCommand.cpp',
41 '../src/utils/debugger/SkObjectParser.cpp', 42 '../src/utils/debugger/SkObjectParser.cpp',
42 '../tools/LazyDecodeBitmap.cpp', 43 '../tools/LazyDecodeBitmap.cpp',
43 ], 44 ],
44 'conditions': [ 45 'conditions': [
45 [ 'skia_gpu == 1', { 46 [ 'skia_gpu == 1', {
46 'dependencies': [ 'gputest.gyp:skgputest' ], 47 'dependencies': [ 'gputest.gyp:skgputest' ],
47 }], 48 }],
48 ], 49 ],
49 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698