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

Side by Side Diff: gyp/images.gyp

Issue 340783013: Switch SkPDFStream's internal storage from SkStream to SkData (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 5 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/core.gypi ('k') | src/core/SkStream.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file for images project. 1 # GYP file for images project.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'images', 5 'target_name': 'images',
6 'product_name': 'skia_images', 6 'product_name': 'skia_images',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:*', 10 'core.gyp:*',
(...skipping 10 matching lines...) Expand all
21 ], 21 ],
22 }], 22 }],
23 ], 23 ],
24 'include_dirs': [ 24 'include_dirs': [
25 '../include/images', 25 '../include/images',
26 '../src/lazy', 26 '../src/lazy',
27 # for access to SkErrorInternals.h 27 # for access to SkErrorInternals.h
28 '../src/core/', 28 '../src/core/',
29 # for access to SkImagePriv.h 29 # for access to SkImagePriv.h
30 '../src/image/', 30 '../src/image/',
31 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h
32 '../src/images/',
33 ], 31 ],
34 'sources': [ 32 'sources': [
35 '../include/images/SkDecodingImageGenerator.h', 33 '../include/images/SkDecodingImageGenerator.h',
36 '../include/images/SkForceLinking.h', 34 '../include/images/SkForceLinking.h',
37 '../src/images/SkJpegUtility.h', 35 '../src/images/SkJpegUtility.h',
38 '../include/images/SkMovie.h', 36 '../include/images/SkMovie.h',
39 '../include/images/SkPageFlipper.h', 37 '../include/images/SkPageFlipper.h',
40 38
41 '../src/images/bmpdecoderhelper.cpp', 39 '../src/images/bmpdecoderhelper.cpp',
42 '../src/images/bmpdecoderhelper.h', 40 '../src/images/bmpdecoderhelper.h',
(...skipping 27 matching lines...) Expand all
70 68
71 '../src/images/SkImageEncoder.cpp', 69 '../src/images/SkImageEncoder.cpp',
72 '../src/images/SkImageEncoder_Factory.cpp', 70 '../src/images/SkImageEncoder_Factory.cpp',
73 '../src/images/SkImageEncoder_argb.cpp', 71 '../src/images/SkImageEncoder_argb.cpp',
74 '../src/images/SkJpegUtility.cpp', 72 '../src/images/SkJpegUtility.cpp',
75 '../src/images/SkMovie.cpp', 73 '../src/images/SkMovie.cpp',
76 '../src/images/SkMovie_gif.cpp', 74 '../src/images/SkMovie_gif.cpp',
77 '../src/images/SkPageFlipper.cpp', 75 '../src/images/SkPageFlipper.cpp',
78 '../src/images/SkScaledBitmapSampler.cpp', 76 '../src/images/SkScaledBitmapSampler.cpp',
79 '../src/images/SkScaledBitmapSampler.h', 77 '../src/images/SkScaledBitmapSampler.h',
80 '../src/images/SkStreamHelpers.cpp',
81 '../src/images/SkStreamHelpers.h',
82 78
83 '../src/ports/SkImageDecoder_CG.cpp', 79 '../src/ports/SkImageDecoder_CG.cpp',
84 '../src/ports/SkImageDecoder_WIC.cpp', 80 '../src/ports/SkImageDecoder_WIC.cpp',
85 ], 81 ],
86 'conditions': [ 82 'conditions': [
87 [ 'skia_os == "win"', { 83 [ 'skia_os == "win"', {
88 'sources!': [ 84 'sources!': [
89 '../src/images/SkImageDecoder_FactoryDefault.cpp', 85 '../src/images/SkImageDecoder_FactoryDefault.cpp',
90 '../src/images/SkImageDecoder_libgif.cpp', 86 '../src/images/SkImageDecoder_libgif.cpp',
91 '../src/images/SkImageDecoder_libpng.cpp', 87 '../src/images/SkImageDecoder_libpng.cpp',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 }], 158 }],
163 ], 159 ],
164 'direct_dependent_settings': { 160 'direct_dependent_settings': {
165 'include_dirs': [ 161 'include_dirs': [
166 '../include/images', 162 '../include/images',
167 ], 163 ],
168 }, 164 },
169 }, 165 },
170 ], 166 ],
171 } 167 }
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | src/core/SkStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698