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

Side by Side Diff: gyp/dm.gyp

Issue 318493002: Android: remove -lcutils dependency (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase 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
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/gm.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 # 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ], 56 ],
57 'dependencies': [ 57 'dependencies': [
58 'skia_lib.gyp:skia_lib', 58 'skia_lib.gyp:skia_lib',
59 'flags.gyp:flags', 59 'flags.gyp:flags',
60 'jsoncpp.gyp:jsoncpp', 60 'jsoncpp.gyp:jsoncpp',
61 'gputest.gyp:skgputest', 61 'gputest.gyp:skgputest',
62 'record.gyp:*', 62 'record.gyp:*',
63 ], 63 ],
64 'conditions': [ 64 'conditions': [
65 ['skia_android_framework', { 65 ['skia_android_framework', {
66 'libraries': [ 66 'libraries': [ '-lskia' ],
67 '-lcutils',
68 '-lskia',
69 ],
70 }], 67 }],
71 ['skia_poppler_enabled', { 68 ['skia_poppler_enabled', {
72 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ], 69 'sources': [ '../src/utils/SkPDFRasterizer.cpp' ],
73 'defines': [ 'SK_BUILD_POPPLER' ], 70 'defines': [ 'SK_BUILD_POPPLER' ],
74 'dependencies': [ 'poppler.gyp:*' ], 71 'dependencies': [ 'poppler.gyp:*' ],
75 }], 72 }],
76 ], 73 ],
77 }] 74 }]
78 } 75 }
OLDNEW
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/gm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698