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

Side by Side Diff: gyp/tools.gyp

Issue 1685963004: Revert of Make SkPicture/SkImageGenerator default to SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « gyp/images.gyp ('k') | include/core/SkPicture.h » ('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 # GYP file to build various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'sources': [ 75 'sources': [
76 '../tools/dump_record.cpp', 76 '../tools/dump_record.cpp',
77 '../tools/DumpRecord.cpp', 77 '../tools/DumpRecord.cpp',
78 ], 78 ],
79 'include_dirs': [ 79 'include_dirs': [
80 '../include/private', 80 '../include/private',
81 '../src/core', 81 '../src/core',
82 ], 82 ],
83 'dependencies': [ 83 'dependencies': [
84 'flags.gyp:flags', 84 'flags.gyp:flags',
85 'lazy_decode_bitmap',
85 'skia_lib.gyp:skia_lib', 86 'skia_lib.gyp:skia_lib',
86 ], 87 ],
87 }, 88 },
88 { 89 {
89 'target_name': 'chrome_fuzz', 90 'target_name': 'chrome_fuzz',
90 'type': 'executable', 91 'type': 'executable',
91 'sources': [ 92 'sources': [
92 '../tools/chrome_fuzz.cpp', 93 '../tools/chrome_fuzz.cpp',
93 ], 94 ],
94 'dependencies': [ 95 'dependencies': [
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ], 258 ],
258 'include_dirs': [ 259 'include_dirs': [
259 '../include/core', 260 '../include/core',
260 ], 261 ],
261 'dependencies': [ 262 'dependencies': [
262 'flags.gyp:flags', 263 'flags.gyp:flags',
263 'skia_lib.gyp:skia_lib', 264 'skia_lib.gyp:skia_lib',
264 ], 265 ],
265 }, 266 },
266 { 267 {
268 'target_name': 'lazy_decode_bitmap',
269 'type': 'static_library',
270 'sources': [ '../tools/LazyDecodeBitmap.cpp' ],
271 'include_dirs': [
272 '../include/private',
273 '../src/core',
274 '../src/lazy',
275 ],
276 'dependencies': [
277 'flags.gyp:flags',
278 'skia_lib.gyp:skia_lib'
279 ],
280 },
281 {
267 'target_name': 'gpuveto', 282 'target_name': 'gpuveto',
268 'type': 'executable', 283 'type': 'executable',
269 'sources': [ 284 'sources': [
270 '../tools/gpuveto.cpp', 285 '../tools/gpuveto.cpp',
271 ], 286 ],
272 'include_dirs': [ 287 'include_dirs': [
273 '../include/private', 288 '../include/private',
274 '../src/core/', 289 '../src/core/',
275 '../src/images', 290 '../src/images',
276 ], 291 ],
277 'dependencies': [ 292 'dependencies': [
293 'lazy_decode_bitmap',
278 'flags.gyp:flags', 294 'flags.gyp:flags',
279 'skia_lib.gyp:skia_lib', 295 'skia_lib.gyp:skia_lib',
280 ], 296 ],
281 }, 297 },
282 { 298 {
283 'target_name': 'lua_app', 299 'target_name': 'lua_app',
284 'type': 'executable', 300 'type': 'executable',
285 'sources': [ 301 'sources': [
286 '../tools/lua/lua_app.cpp', 302 '../tools/lua/lua_app.cpp',
287 '../src/utils/SkLua.cpp', 303 '../src/utils/SkLua.cpp',
(...skipping 21 matching lines...) Expand all
309 '../src/utils/SkLuaCanvas.cpp', 325 '../src/utils/SkLuaCanvas.cpp',
310 '../src/utils/SkLua.cpp', 326 '../src/utils/SkLua.cpp',
311 ], 327 ],
312 'include_dirs': [ 328 'include_dirs': [
313 '../include/private', 329 '../include/private',
314 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList 330 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList
315 '../src/gpu/', 331 '../src/gpu/',
316 '../src/core/', 332 '../src/core/',
317 ], 333 ],
318 'dependencies': [ 334 'dependencies': [
335 'lazy_decode_bitmap',
319 'effects.gyp:effects', 336 'effects.gyp:effects',
320 'flags.gyp:flags', 337 'flags.gyp:flags',
321 'images.gyp:images', 338 'images.gyp:images',
322 'lua.gyp:lua', 339 'lua.gyp:lua',
323 'tools.gyp:picture_utils', 340 'tools.gyp:picture_utils',
324 'pdf.gyp:pdf', 341 'pdf.gyp:pdf',
325 'ports.gyp:ports', 342 'ports.gyp:ports',
326 'skia_lib.gyp:skia_lib', 343 'skia_lib.gyp:skia_lib',
327 ], 344 ],
328 }, 345 },
(...skipping 13 matching lines...) Expand all
342 ], 359 ],
343 }, 360 },
344 }, 361 },
345 { 362 {
346 'target_name': 'pinspect', 363 'target_name': 'pinspect',
347 'type': 'executable', 364 'type': 'executable',
348 'sources': [ 365 'sources': [
349 '../tools/pinspect.cpp', 366 '../tools/pinspect.cpp',
350 ], 367 ],
351 'dependencies': [ 368 'dependencies': [
369 'lazy_decode_bitmap',
352 'flags.gyp:flags', 370 'flags.gyp:flags',
353 'skia_lib.gyp:skia_lib', 371 'skia_lib.gyp:skia_lib',
354 ], 372 ],
355 }, 373 },
356 { 374 {
357 'target_name': 'imgconv', 375 'target_name': 'imgconv',
358 'type': 'executable', 376 'type': 'executable',
359 'sources': [ 377 'sources': [
360 '../tools/imgconv.cpp', 378 '../tools/imgconv.cpp',
361 ], 379 ],
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'flags.gyp:flags', 590 'flags.gyp:flags',
573 'skia_lib.gyp:skia_lib', 591 'skia_lib.gyp:skia_lib',
574 'resources', 592 'resources',
575 ], 593 ],
576 }, 594 },
577 ], 595 ],
578 }, 596 },
579 ], 597 ],
580 ], 598 ],
581 } 599 }
OLDNEW
« no previous file with comments | « gyp/images.gyp ('k') | include/core/SkPicture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698