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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1681643002: Moved Canvas->JSON and JSON->Canvas functionality into SkDebugCanvas. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: switched from free to sk_free Created 4 years, 10 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/debugger.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 # 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
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',
160 ], 161 ],
161 'msvs_settings': { 162 'msvs_settings': {
162 'VCLinkerTool': { 163 'VCLinkerTool': {
163 #Allows for creation / output to console. 164 #Allows for creation / output to console.
164 #Console (/SUBSYSTEM:CONSOLE) 165 #Console (/SUBSYSTEM:CONSOLE)
165 'SubSystem': '1', 166 'SubSystem': '1',
166 167
167 #Console app, use main/wmain 168 #Console app, use main/wmain
168 'EntryPointSymbol': 'mainCRTStartup', 169 'EntryPointSymbol': 'mainCRTStartup',
169 }, 170 },
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 ], 266 ],
266 }], 267 }],
267 [ 'not skia_pdf', { 268 [ 'not skia_pdf', {
268 'dependencies!': [ 'pdf.gyp:pdf' ], 269 'dependencies!': [ 'pdf.gyp:pdf' ],
269 'dependencies': [ 'pdf.gyp:nopdf' ], 270 'dependencies': [ 'pdf.gyp:nopdf' ],
270 }], 271 }],
271 ], 272 ],
272 }, 273 },
273 ], 274 ],
274 } 275 }
OLDNEW
« no previous file with comments | « no previous file | gyp/debugger.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698