OLD | NEW |
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 # | 5 # |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'SampleApp', | 9 'target_name': 'SampleApp', |
10 'type': 'executable', | 10 'type': 'executable', |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'flags.gyp:flags', | 150 'flags.gyp:flags', |
151 'jsoncpp.gyp:jsoncpp', | 151 'jsoncpp.gyp:jsoncpp', |
152 'lua.gyp:lua', | 152 'lua.gyp:lua', |
153 'pdf.gyp:pdf', | 153 'pdf.gyp:pdf', |
154 'skia_lib.gyp:skia_lib', | 154 'skia_lib.gyp:skia_lib', |
155 'tools.gyp:resources', | 155 'tools.gyp:resources', |
156 'tools.gyp:sk_tool_utils', | 156 'tools.gyp:sk_tool_utils', |
157 'tools.gyp:timer', | 157 'tools.gyp:timer', |
158 'tools.gyp:url_data_manager', | 158 'tools.gyp:url_data_manager', |
159 'views.gyp:views', | 159 'views.gyp:views', |
160 'views_animated.gyp:views_animated', | |
161 'xml.gyp:xml', | 160 'xml.gyp:xml', |
162 ], | 161 ], |
163 'msvs_settings': { | 162 'msvs_settings': { |
164 'VCLinkerTool': { | 163 'VCLinkerTool': { |
165 #Allows for creation / output to console. | 164 #Allows for creation / output to console. |
166 #Console (/SUBSYSTEM:CONSOLE) | 165 #Console (/SUBSYSTEM:CONSOLE) |
167 'SubSystem': '1', | 166 'SubSystem': '1', |
168 | 167 |
169 #Console app, use main/wmain | 168 #Console app, use main/wmain |
170 'EntryPointSymbol': 'mainCRTStartup', | 169 'EntryPointSymbol': 'mainCRTStartup', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 ], | 266 ], |
268 }], | 267 }], |
269 [ 'not skia_pdf', { | 268 [ 'not skia_pdf', { |
270 'dependencies!': [ 'pdf.gyp:pdf' ], | 269 'dependencies!': [ 'pdf.gyp:pdf' ], |
271 'dependencies': [ 'pdf.gyp:nopdf' ], | 270 'dependencies': [ 'pdf.gyp:nopdf' ], |
272 }], | 271 }], |
273 ], | 272 ], |
274 }, | 273 }, |
275 ], | 274 ], |
276 } | 275 } |
OLD | NEW |