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

Side by Side Diff: gyp/codec.gyp

Issue 1022843005: Revert of Enabling ico decoding with use of png and bmp decoders (Closed) Base URL: https://skia.googlesource.com/skia.git@swizzle
Patch Set: 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
« no previous file with comments | « dm/DMSrcSink.cpp ('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 # GYP file for codec project. 1 # GYP file for codec project.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'codec', 5 'target_name': 'codec',
6 'product_name': 'skia_codec', 6 'product_name': 'skia_codec',
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 'libpng.gyp:libpng', 11 'libpng.gyp:libpng',
12 ], 12 ],
13 'include_dirs': [ 13 'include_dirs': [
14 '../include/codec', 14 '../include/codec',
15 '../src/codec', 15 '../src/codec',
16 '../src/core',
17 ], 16 ],
18 'sources': [ 17 'sources': [
19 '../src/codec/SkCodec.cpp', 18 '../src/codec/SkCodec.cpp',
19 '../src/codec/SkCodec_libpng.cpp',
20 '../src/codec/SkCodec_libbmp.cpp', 20 '../src/codec/SkCodec_libbmp.cpp',
21 '../src/codec/SkCodec_libico.cpp',
22 '../src/codec/SkCodec_libpng.cpp',
23 '../src/codec/SkMaskSwizzler.cpp', 21 '../src/codec/SkMaskSwizzler.cpp',
24 '../src/codec/SkMasks.cpp', 22 '../src/codec/SkMasks.cpp',
25 '../src/codec/SkSwizzler.cpp', 23 '../src/codec/SkSwizzler.cpp',
26 ], 24 ],
27 'direct_dependent_settings': { 25 'direct_dependent_settings': {
28 'include_dirs': [ 26 'include_dirs': [
29 '../include/codec', 27 '../include/codec',
30 ], 28 ],
31 }, 29 },
32 }, 30 },
33 ], 31 ],
34 } 32 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698