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