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

Side by Side Diff: gyp/apptype_console.gypi

Issue 235883015: Generate tests/Android.mk from gyp (Closed) Base URL: https://skia.googlesource.com/skia.git@generate
Patch Set: Remove Android.mk/SkUserConfig.h 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 | « no previous file | gyp/tests.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" and not skia_android_framework', {
16 'dependencies': [ 16 'dependencies': [
17 'android_deps.gyp:Android_EntryPoint', 17 'android_deps.gyp:Android_EntryPoint',
18 'android_system.gyp:skia_launcher', 18 'android_system.gyp:skia_launcher',
19 ], 19 ],
20 }], 20 }],
21 [ 'skia_os == "nacl"', { 21 [ 'skia_os == "nacl"', {
22 'dependencies': [ 22 'dependencies': [
23 'nacl.gyp:nacl_interface', 23 'nacl.gyp:nacl_interface',
24 ], 24 ],
25 }], 25 }],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib', 64 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib',
65 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib', 65 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib',
66 ], 66 ],
67 'xcode_settings' : { 67 'xcode_settings' : {
68 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist', 68 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist',
69 }, 69 },
70 }], 70 }],
71 ], 71 ],
72 }, 72 },
73 } 73 }
OLDNEW
« no previous file with comments | « no previous file | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698