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

Side by Side Diff: gyp/dm.gyp

Issue 290603002: Generate Android.mk for DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@generate_gm
Patch Set: Remove one more generated file. Created 6 years, 7 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/DMExpectations.h ('k') | platform_tools/android/bin/gyp_to_android.py » ('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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 '../src/utils/debugger/SkDrawCommand.cpp', 52 '../src/utils/debugger/SkDrawCommand.cpp',
53 '../src/utils/debugger/SkObjectParser.cpp', 53 '../src/utils/debugger/SkObjectParser.cpp',
54 ], 54 ],
55 'dependencies': [ 55 'dependencies': [
56 'skia_lib.gyp:skia_lib', 56 'skia_lib.gyp:skia_lib',
57 'flags.gyp:flags', 57 'flags.gyp:flags',
58 'jsoncpp.gyp:jsoncpp', 58 'jsoncpp.gyp:jsoncpp',
59 'gputest.gyp:skgputest', 59 'gputest.gyp:skgputest',
60 'record.gyp:*', 60 'record.gyp:*',
61 ], 61 ],
62 'conditions': [
63 ['skia_android_framework',
64 {
65 'libraries': [
66 '-lskia',
67 '-lcutils',
68 ],
69 },
70 ],
71 ],
62 }] 72 }]
63 } 73 }
OLDNEW
« no previous file with comments | « dm/DMExpectations.h ('k') | platform_tools/android/bin/gyp_to_android.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698