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

Side by Side Diff: gyp/dm.gyp

Issue 1407053009: Simplify linkages to Android framework internals (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: One gyp file is much like another Created 5 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/utils.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 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). 5 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
6 { 6 {
7 'includes': [ 'apptype_console.gypi' ], 7 'includes': [ 'apptype_console.gypi' ],
8 8
9 'targets': [{ 9 'targets': [{
10 'target_name': 'dm', 10 'target_name': 'dm',
11 'type': 'executable', 11 'type': 'executable',
12 'includes': [ 12 'includes': [
13 'dm.gypi', 13 'dm.gypi',
14 ], 14 ],
15 'conditions': [ 15 'conditions': [
16 ['skia_android_framework', { 16 ['skia_android_framework', {
17 'libraries': [ 17 'libraries': [
18 '-lskia', 18 '-lskia',
19 '-landroid', 19 '-landroid',
20 '-lgui',
21 '-lhwui', 20 '-lhwui',
22 '-lutils', 21 '-lutils',
23 ], 22 ],
24 'include_dirs': [ 23 'include_dirs': [
25 '../../../frameworks/base/libs/hwui/', 24 '../../../frameworks/base/libs/hwui/',
26 '../../../frameworks/native/include/',
27 ], 25 ],
28 'sources': [ 26 'sources': [
29 '../dm/DMSrcSinkAndroid.cpp', 27 '../dm/DMSrcSinkAndroid.cpp',
30 ], 28 ],
31 'dependencies': [ 29 'dependencies': [
32 'utils.gyp:android_utils', 30 'utils.gyp:android_utils',
33 ], 31 ],
34 }], 32 }],
35 ], 33 ],
36 }] 34 }]
37 } 35 }
OLDNEW
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/utils.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698