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

Side by Side Diff: gyp/dm.gyp

Issue 312873002: DM: add pdf (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: put cutils back Created 6 years, 6 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
« dm/DMPDFTask.cpp ('K') | « dm/README ('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', 10 '../bench',
(...skipping 14 matching lines...) Expand all
25 'gmslides.gypi', 25 'gmslides.gypi',
26 'pathops_unittest.gypi', 26 'pathops_unittest.gypi',
27 'tests.gypi', 27 'tests.gypi',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 '../dm/DM.cpp', 30 '../dm/DM.cpp',
31 '../dm/DMBenchTask.cpp', 31 '../dm/DMBenchTask.cpp',
32 '../dm/DMCpuGMTask.cpp', 32 '../dm/DMCpuGMTask.cpp',
33 '../dm/DMExpectationsTask.cpp', 33 '../dm/DMExpectationsTask.cpp',
34 '../dm/DMGpuGMTask.cpp', 34 '../dm/DMGpuGMTask.cpp',
35 '../dm/DMPDFRasterizeTask.cpp',
36 '../dm/DMPDFTask.cpp',
35 '../dm/DMPipeTask.cpp', 37 '../dm/DMPipeTask.cpp',
36 '../dm/DMQuiltTask.cpp', 38 '../dm/DMQuiltTask.cpp',
37 '../dm/DMRecordTask.cpp', 39 '../dm/DMRecordTask.cpp',
38 '../dm/DMReplayTask.cpp', 40 '../dm/DMReplayTask.cpp',
39 '../dm/DMReporter.cpp', 41 '../dm/DMReporter.cpp',
42 '../dm/DMSKPTask.cpp',
40 '../dm/DMSerializeTask.cpp', 43 '../dm/DMSerializeTask.cpp',
41 '../dm/DMSKPTask.cpp',
42 '../dm/DMTask.cpp', 44 '../dm/DMTask.cpp',
43 '../dm/DMTaskRunner.cpp', 45 '../dm/DMTaskRunner.cpp',
44 '../dm/DMTestTask.cpp', 46 '../dm/DMTestTask.cpp',
45 '../dm/DMUtil.cpp', 47 '../dm/DMUtil.cpp',
46 '../dm/DMWriteTask.cpp', 48 '../dm/DMWriteTask.cpp',
47 '../gm/gm.cpp', 49 '../gm/gm.cpp',
48 '../gm/gm_expectations.cpp', 50 '../gm/gm_expectations.cpp',
49 51
50 '../src/pipe/utils/SamplePipeControllers.cpp', 52 '../src/pipe/utils/SamplePipeControllers.cpp',
51 '../src/utils/debugger/SkDebugCanvas.cpp', 53 '../src/utils/debugger/SkDebugCanvas.cpp',
52 '../src/utils/debugger/SkDrawCommand.cpp', 54 '../src/utils/debugger/SkDrawCommand.cpp',
53 '../src/utils/debugger/SkObjectParser.cpp', 55 '../src/utils/debugger/SkObjectParser.cpp',
54 ], 56 ],
55 'dependencies': [ 57 'dependencies': [
56 'skia_lib.gyp:skia_lib', 58 'skia_lib.gyp:skia_lib',
57 'flags.gyp:flags', 59 'flags.gyp:flags',
58 'jsoncpp.gyp:jsoncpp', 60 'jsoncpp.gyp:jsoncpp',
59 'gputest.gyp:skgputest', 61 'gputest.gyp:skgputest',
60 'record.gyp:*', 62 'record.gyp:*',
61 ], 63 ],
62 'conditions': [ 64 'conditions': [
63 ['skia_android_framework', 65 ['skia_android_framework', {
64 {
65 'libraries': [ 66 'libraries': [
67 '-lcutils',
66 '-lskia', 68 '-lskia',
67 '-lcutils',
68 ], 69 ],
69 }, 70 }],
70 ], 71 ['skia_poppler_enabled', {
72 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ],
73 'defines': [ 'SK_BUILD_POPPLER' ],
74 'dependencies': [ 'poppler.gyp:*' ],
75 }],
71 ], 76 ],
72 }] 77 }]
73 } 78 }
OLDNEW
« dm/DMPDFTask.cpp ('K') | « dm/README ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698