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

Side by Side Diff: gyp/dm.gyp

Issue 399463003: Remove benches from DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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 | « dm/DMUtil.h ('k') | 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 # 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',
11 '../dm', 10 '../dm',
12 '../gm', 11 '../gm',
13 '../tests', 12 '../tests',
14 '../src/images', 13 '../src/images',
15 '../src/lazy', 14 '../src/lazy',
16 '../src/core', 15 '../src/core',
17 '../src/effects', 16 '../src/effects',
18 '../src/pipe/utils/', 17 '../src/pipe/utils/',
19 '../src/utils', 18 '../src/utils',
20 '../src/utils/debugger', 19 '../src/utils/debugger',
21 '../tools', 20 '../tools',
22 ], 21 ],
23 'includes': [ 22 'includes': [
24 'bench.gypi',
25 'gmslides.gypi', 23 'gmslides.gypi',
26 'pathops_unittest.gypi', 24 'pathops_unittest.gypi',
27 'tests.gypi', 25 'tests.gypi',
28 ], 26 ],
29 'sources': [ 27 'sources': [
30 '../dm/DM.cpp', 28 '../dm/DM.cpp',
31 '../dm/DMBenchTask.cpp',
32 '../dm/DMCpuGMTask.cpp', 29 '../dm/DMCpuGMTask.cpp',
33 '../dm/DMExpectationsTask.cpp', 30 '../dm/DMExpectationsTask.cpp',
34 '../dm/DMGpuGMTask.cpp', 31 '../dm/DMGpuGMTask.cpp',
35 '../dm/DMPDFRasterizeTask.cpp', 32 '../dm/DMPDFRasterizeTask.cpp',
36 '../dm/DMPDFTask.cpp', 33 '../dm/DMPDFTask.cpp',
37 '../dm/DMPipeTask.cpp', 34 '../dm/DMPipeTask.cpp',
38 '../dm/DMQuiltTask.cpp', 35 '../dm/DMQuiltTask.cpp',
39 '../dm/DMReporter.cpp', 36 '../dm/DMReporter.cpp',
40 '../dm/DMSKPTask.cpp', 37 '../dm/DMSKPTask.cpp',
41 '../dm/DMSerializeTask.cpp', 38 '../dm/DMSerializeTask.cpp',
(...skipping 24 matching lines...) Expand all
66 'libraries': [ '-lskia' ], 63 'libraries': [ '-lskia' ],
67 }], 64 }],
68 ['skia_poppler_enabled', { 65 ['skia_poppler_enabled', {
69 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], 66 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ],
70 'defines': [ 'SK_BUILD_POPPLER' ], 67 'defines': [ 'SK_BUILD_POPPLER' ],
71 'dependencies': [ 'poppler.gyp:*' ], 68 'dependencies': [ 'poppler.gyp:*' ],
72 }], 69 }],
73 ], 70 ],
74 }] 71 }]
75 } 72 }
OLDNEW
« no previous file with comments | « dm/DMUtil.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698