OLD | NEW |
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" and not skia_android_framework', { | 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 'skia_launcher.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 }], |
26 ['skia_os == "ios"', { | 26 ['skia_os == "ios"', { |
27 'target_conditions': [ | 27 'target_conditions': [ |
28 ['_type == "executable"', { | 28 ['_type == "executable"', { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |