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

Side by Side Diff: gyp/tools.gyp

Issue 1332053002: Fill incomplete images in SkCodec parent class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 3 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 }, 52 },
53 { 53 {
54 'target_name': 'bitmap_region_decoder', 54 'target_name': 'bitmap_region_decoder',
55 'type': 'static_library', 55 'type': 'static_library',
56 'sources': [ 56 'sources': [
57 '../tools/SkBitmapRegionCanvas.cpp', 57 '../tools/SkBitmapRegionCanvas.cpp',
58 '../tools/SkBitmapRegionDecoderInterface.cpp', 58 '../tools/SkBitmapRegionDecoderInterface.cpp',
59 '../tools/SkBitmapRegionSampler.cpp', 59 '../tools/SkBitmapRegionSampler.cpp',
60 ], 60 ],
61 'include_dirs': [ 61 'include_dirs': [
62 '../include/private' 62 '../include/private',
63 '../src/codec',
63 ], 64 ],
64 'dependencies': [ 65 'dependencies': [
65 'skia_lib.gyp:skia_lib', 66 'skia_lib.gyp:skia_lib',
66 ], 67 ],
67 }, 68 },
68 { 69 {
69 'target_name': 'chrome_fuzz', 70 'target_name': 'chrome_fuzz',
70 'type': 'executable', 71 'type': 'executable',
71 'sources': [ 72 'sources': [
72 '../tools/chrome_fuzz.cpp', 73 '../tools/chrome_fuzz.cpp',
(...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 'flags.gyp:flags', 838 'flags.gyp:flags',
838 'skia_lib.gyp:skia_lib', 839 'skia_lib.gyp:skia_lib',
839 'resources', 840 'resources',
840 ], 841 ],
841 }, 842 },
842 ], 843 ],
843 }, 844 },
844 ], 845 ],
845 ], 846 ],
846 } 847 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698