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

Side by Side Diff: gyp/tools.gyp

Issue 1760583003: Remove unused tools and unused includes of SkImageDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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
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 13 matching lines...) Expand all
24 'imgblur', 24 'imgblur',
25 'imgconv', 25 'imgconv',
26 'imgslice', 26 'imgslice',
27 'lua_app', 27 'lua_app',
28 'lua_pictures', 28 'lua_pictures',
29 'pinspect', 29 'pinspect',
30 'skdiff', 30 'skdiff',
31 'skhello', 31 'skhello',
32 'skpinfo', 32 'skpinfo',
33 'skpmaker', 33 'skpmaker',
34 'test_image_decoder',
35 'test_public_includes', 34 'test_public_includes',
36 'whitelist_typefaces', 35 'whitelist_typefaces',
37 ], 36 ],
38 'conditions': [ 37 'conditions': [
39 ['skia_shared_lib', 38 ['skia_shared_lib',
40 { 39 {
41 'dependencies': [ 40 'dependencies': [
42 'sklua', # This can only be built if skia is built as a shared lib rary 41 'sklua', # This can only be built if skia is built as a shared lib rary
43 ], 42 ],
44 }, 43 },
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 'type': 'executable', 374 'type': 'executable',
376 'sources': [ 375 'sources': [
377 '../tools/imgconv.cpp', 376 '../tools/imgconv.cpp',
378 ], 377 ],
379 'dependencies': [ 378 'dependencies': [
380 'flags.gyp:flags', 379 'flags.gyp:flags',
381 'skia_lib.gyp:skia_lib', 380 'skia_lib.gyp:skia_lib',
382 ], 381 ],
383 }, 382 },
384 { 383 {
385 'target_name': 'test_image_decoder',
386 'type': 'executable',
387 'sources': [
388 '../tools/test_image_decoder.cpp',
389 ],
390 'dependencies': [
391 'skia_lib.gyp:skia_lib',
392 ],
393 },
394 {
395 'target_name': 'proc_stats', 384 'target_name': 'proc_stats',
396 'type': 'static_library', 385 'type': 'static_library',
397 'sources': [ 386 'sources': [
398 '../tools/ProcStats.h', 387 '../tools/ProcStats.h',
399 '../tools/ProcStats.cpp', 388 '../tools/ProcStats.cpp',
400 ], 389 ],
401 'direct_dependent_settings': { 390 'direct_dependent_settings': {
402 'include_dirs': [ '../tools', ], 391 'include_dirs': [ '../tools', ],
403 }, 392 },
404 }, 393 },
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 'flags.gyp:flags', 591 'flags.gyp:flags',
603 'skia_lib.gyp:skia_lib', 592 'skia_lib.gyp:skia_lib',
604 'resources', 593 'resources',
605 ], 594 ],
606 }, 595 },
607 ], 596 ],
608 }, 597 },
609 ], 598 ],
610 ], 599 ],
611 } 600 }
OLDNEW
« no previous file with comments | « no previous file | tools/VisualBench/VisualInteractiveModule.cpp » ('j') | tools/find_bad_images_in_skps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698