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

Side by Side Diff: gyp/images.gyp

Issue 1018953003: Add SkEncodedFormat, used by SkCodec. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Use a common enum for SkImageEncoder and SkImageDecoder and SkCodec Created 5 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 # 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:*',
11 'libjpeg.gyp:*', 11 'libjpeg.gyp:*',
12 'etc1.gyp:libetc1', 12 'etc1.gyp:libetc1',
13 'ktx.gyp:libSkKTX', 13 'ktx.gyp:libSkKTX',
14 'libwebp.gyp:libwebp', 14 'libwebp.gyp:libwebp',
15 'utils.gyp:utils', 15 'utils.gyp:utils',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '../include/core',
18 '../include/images', 19 '../include/images',
19 '../src/lazy', 20 '../src/lazy',
20 # for access to SkErrorInternals.h 21 # for access to SkErrorInternals.h
21 '../src/core/', 22 '../src/core/',
22 # for access to SkImagePriv.h 23 # for access to SkImagePriv.h
23 '../src/image/', 24 '../src/image/',
24 ], 25 ],
25 'sources': [ 26 'sources': [
26 '../include/images/SkDecodingImageGenerator.h', 27 '../include/images/SkDecodingImageGenerator.h',
27 '../include/images/SkForceLinking.h', 28 '../include/images/SkForceLinking.h',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 }], 164 }],
164 ], 165 ],
165 'direct_dependent_settings': { 166 'direct_dependent_settings': {
166 'include_dirs': [ 167 'include_dirs': [
167 '../include/images', 168 '../include/images',
168 ], 169 ],
169 }, 170 },
170 }, 171 },
171 ], 172 ],
172 } 173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698