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

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: Use aligned memory in swizzler test Created 5 years, 2 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/codec.gyp ('k') | include/codec/SkCodec.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 }, 53 },
54 { 54 {
55 'target_name': 'bitmap_region_decoder', 55 'target_name': 'bitmap_region_decoder',
56 'type': 'static_library', 56 'type': 'static_library',
57 'sources': [ 57 'sources': [
58 '../tools/SkBitmapRegionCanvas.cpp', 58 '../tools/SkBitmapRegionCanvas.cpp',
59 '../tools/SkBitmapRegionDecoderInterface.cpp', 59 '../tools/SkBitmapRegionDecoderInterface.cpp',
60 '../tools/SkBitmapRegionSampler.cpp', 60 '../tools/SkBitmapRegionSampler.cpp',
61 ], 61 ],
62 'include_dirs': [ 62 'include_dirs': [
63 '../include/private' 63 '../include/private',
64 '../src/codec',
64 ], 65 ],
65 'dependencies': [ 66 'dependencies': [
66 'skia_lib.gyp:skia_lib', 67 'skia_lib.gyp:skia_lib',
67 ], 68 ],
68 }, 69 },
69 { 70 {
70 'target_name': 'chrome_fuzz', 71 'target_name': 'chrome_fuzz',
71 'type': 'executable', 72 'type': 'executable',
72 'sources': [ 73 'sources': [
73 '../tools/chrome_fuzz.cpp', 74 '../tools/chrome_fuzz.cpp',
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 'flags.gyp:flags', 852 'flags.gyp:flags',
852 'skia_lib.gyp:skia_lib', 853 'skia_lib.gyp:skia_lib',
853 'resources', 854 'resources',
854 ], 855 ],
855 }, 856 },
856 ], 857 ],
857 }, 858 },
858 ], 859 ],
859 ], 860 ],
860 } 861 }
OLDNEW
« no previous file with comments | « gyp/codec.gyp ('k') | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698