| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ], | 141 ], |
| 142 'sources!': [ | 142 'sources!': [ |
| 143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile | 143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile |
| 144 '../samplecode/SampleFontCache.cpp', | 144 '../samplecode/SampleFontCache.cpp', |
| 145 ], | 145 ], |
| 146 'dependencies': [ | 146 'dependencies': [ |
| 147 'animator.gyp:animator', | 147 'animator.gyp:animator', |
| 148 'etc1.gyp:libetc1', | 148 'etc1.gyp:libetc1', |
| 149 'experimental.gyp:experimental', | 149 'experimental.gyp:experimental', |
| 150 'flags.gyp:flags', | 150 'flags.gyp:flags', |
| 151 'jsoncpp.gyp:jsoncpp', |
| 151 'lua.gyp:lua', | 152 'lua.gyp:lua', |
| 152 'pdf.gyp:pdf', | 153 'pdf.gyp:pdf', |
| 153 'skia_lib.gyp:skia_lib', | 154 'skia_lib.gyp:skia_lib', |
| 154 'tools.gyp:resources', | 155 'tools.gyp:resources', |
| 155 'tools.gyp:sk_tool_utils', | 156 'tools.gyp:sk_tool_utils', |
| 156 'tools.gyp:timer', | 157 'tools.gyp:timer', |
| 158 'tools.gyp:url_data_manager', |
| 157 'views.gyp:views', | 159 'views.gyp:views', |
| 158 'views_animated.gyp:views_animated', | 160 'views_animated.gyp:views_animated', |
| 159 'xml.gyp:xml', | 161 'xml.gyp:xml', |
| 160 'jsoncpp.gyp:jsoncpp', | |
| 161 ], | 162 ], |
| 162 'msvs_settings': { | 163 'msvs_settings': { |
| 163 'VCLinkerTool': { | 164 'VCLinkerTool': { |
| 164 #Allows for creation / output to console. | 165 #Allows for creation / output to console. |
| 165 #Console (/SUBSYSTEM:CONSOLE) | 166 #Console (/SUBSYSTEM:CONSOLE) |
| 166 'SubSystem': '1', | 167 'SubSystem': '1', |
| 167 | 168 |
| 168 #Console app, use main/wmain | 169 #Console app, use main/wmain |
| 169 'EntryPointSymbol': 'mainCRTStartup', | 170 'EntryPointSymbol': 'mainCRTStartup', |
| 170 }, | 171 }, |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 ], | 267 ], |
| 267 }], | 268 }], |
| 268 [ 'not skia_pdf', { | 269 [ 'not skia_pdf', { |
| 269 'dependencies!': [ 'pdf.gyp:pdf' ], | 270 'dependencies!': [ 'pdf.gyp:pdf' ], |
| 270 'dependencies': [ 'pdf.gyp:nopdf' ], | 271 'dependencies': [ 'pdf.gyp:nopdf' ], |
| 271 }], | 272 }], |
| 272 ], | 273 ], |
| 273 }, | 274 }, |
| 274 ], | 275 ], |
| 275 } | 276 } |
| OLD | NEW |