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

Side by Side Diff: gyp/codec.gyp

Issue 947283002: Bmp Image Decoding (Closed) Base URL: https://skia.googlesource.com/skia.git@decode-leon-3
Patch Set: separate swizzler for masks 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 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 '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/codec', 18 '../include/codec',
19 '../src/codec', 19 '../src/codec',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 '../src/codec/SkCodec.cpp', 22 '../src/codec/SkCodec.cpp',
23 '../src/codec/SkCodec_libbmp.cpp',
23 '../src/codec/SkCodec_libpng.cpp', 24 '../src/codec/SkCodec_libpng.cpp',
25 '../src/codec/SkMaskSwizzler.cpp',
24 '../src/codec/SkSwizzler.cpp', 26 '../src/codec/SkSwizzler.cpp',
25 ], 27 ],
26 'conditions': [ 28 'conditions': [
27 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 29 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
28 'export_dependent_settings': [ 30 'export_dependent_settings': [
29 'libpng.gyp:libpng', 31 'libpng.gyp:libpng',
30 'giflib.gyp:giflib' 32 'giflib.gyp:giflib'
31 ], 33 ],
32 'dependencies': [ 34 'dependencies': [
33 'libpng.gyp:libpng', 35 'libpng.gyp:libpng',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 }], 73 }],
72 ], 74 ],
73 'direct_dependent_settings': { 75 'direct_dependent_settings': {
74 'include_dirs': [ 76 'include_dirs': [
75 '../include/codec', 77 '../include/codec',
76 ], 78 ],
77 }, 79 },
78 }, 80 },
79 ], 81 ],
80 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698