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

Side by Side Diff: gyp/dm.gyp

Issue 657373002: Make nanobench and dm be usable from Chromium build (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: try with dm.cpp being DM.cpp Created 6 years, 1 month 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 | « gyp/bench.gyp ('k') | gyp/most.gyp » ('j') | 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 'includes': [ 'apptype_console.gypi' ], 3 'includes': [ 'apptype_console.gypi' ],
4 4
5 'targets': [{ 5 'targets': [{
6 'target_name': 'dm', 6 'target_name': 'dm',
7 'type': 'executable', 7 'type': 'executable',
8 'includes': [ 8 'includes': [
9 'dm.gypi', 9 'dm.gypi',
10 ], 10 ],
11 'sources': [
12 '../dm/dm_main.cpp',
13 ],
11 'conditions': [ 14 'conditions': [
12 ['skia_android_framework', { 15 ['skia_android_framework', {
13 'libraries': [ '-lskia' ], 16 'libraries': [ '-lskia' ],
14 }], 17 }],
15 ['skia_poppler_enabled', { 18 ['skia_poppler_enabled', {
16 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], 19 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ],
17 'defines': [ 'SK_BUILD_POPPLER' ], 20 'defines': [ 'SK_BUILD_POPPLER' ],
18 'dependencies': [ 'poppler.gyp:*' ], 21 'dependencies': [ 'poppler.gyp:*' ],
19 }], 22 }],
20 ], 23 ],
21 }] 24 }]
22 } 25 }
OLDNEW
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/most.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698