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

Side by Side Diff: gyp/apptype_console.gypi

Issue 22617002: Update Skia Android tools. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: more fixes to make the bots happy Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Makefile ('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 # target_defaults used for executable targets that generate a console app 1 # target_defaults used for executable targets that generate a console app
2 { 2 {
3 'target_defaults': { 3 'target_defaults': {
4 'msvs_settings': { 4 'msvs_settings': {
5 'VCLinkerTool': { 5 'VCLinkerTool': {
6 #Allows for creation / output to console. 6 #Allows for creation / output to console.
7 #Console (/SUBSYSTEM:CONSOLE) 7 #Console (/SUBSYSTEM:CONSOLE)
8 'SubSystem': '1', 8 'SubSystem': '1',
9 9
10 #Console app, use main/wmain 10 #Console app, use main/wmain
11 'EntryPointSymbol': 'mainCRTStartup', 11 'EntryPointSymbol': 'mainCRTStartup',
12 }, 12 },
13 }, 13 },
14 'conditions': [ 14 'conditions': [
15 [ 'skia_os == "android"', { 15 [ 'skia_os == "android"', {
16 'dependencies': [ 16 'dependencies': [
17 'android_deps.gyp:Android_EntryPoint', 17 'android_deps.gyp:Android_EntryPoint',
18 'android_system.gyp:skia_launcher',
18 ], 19 ],
19 }], 20 }],
20 [ 'skia_os == "nacl"', { 21 [ 'skia_os == "nacl"', {
21 'dependencies': [ 22 'dependencies': [
22 'nacl.gyp:nacl_interface', 23 'nacl.gyp:nacl_interface',
23 ], 24 ],
24 }], 25 }],
25 ['skia_os == "ios"', { 26 ['skia_os == "ios"', {
26 'target_conditions': [ 27 'target_conditions': [
27 ['_type == "executable"', { 28 ['_type == "executable"', {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }], 74 }],
74 ], 75 ],
75 }, 76 },
76 } 77 }
77 78
78 # Local Variables: 79 # Local Variables:
79 # tab-width:2 80 # tab-width:2
80 # indent-tabs-mode:nil 81 # indent-tabs-mode:nil
81 # End: 82 # End:
82 # vim: set expandtab tabstop=2 shiftwidth=2: 83 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « Makefile ('k') | gyp/most.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698