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

Side by Side Diff: gyp/dm.gyp

Issue 1036523002: Switch DM to use utils/android/SkAndroidSDKCanvas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 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/DMSrcSinkAndroid.cpp ('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 { 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 'conditions': [ 11 'conditions': [
12 ['skia_android_framework', { 12 ['skia_android_framework', {
13 'libraries': [ 13 'libraries': [
14 '-lskia', 14 '-lskia',
15 '-landroid', 15 '-landroid',
16 '-lgui', 16 '-lgui',
17 '-lhwui', 17 '-lhwui',
18 '-lutils', 18 '-lutils',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '../../../frameworks/base/libs/hwui/', 21 '../../../frameworks/base/libs/hwui/',
22 '../../../frameworks/native/include/', 22 '../../../frameworks/native/include/',
23 '../src/utils/android/',
djsollen 2015/03/24 18:02:55 you shouldn't need this as it will be pulled in by
tomhudson 2015/03/24 19:33:08 Done.
23 ], 24 ],
24 'sources': [ 25 'sources': [
25 '../dm/DMSrcSinkAndroid.cpp', 26 '../dm/DMSrcSinkAndroid.cpp',
26 ], 27 ],
28 'dependencies': [
29 'utils.gyp:android_utils',
30 ],
27 }], 31 }],
28 ], 32 ],
29 }] 33 }]
30 } 34 }
OLDNEW
« no previous file with comments | « dm/DMSrcSinkAndroid.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698