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

Side by Side Diff: gyp/images.gyp

Issue 12604006: Upstream Android modifications to the image encoders/decoders. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: minor fixes Created 7 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 | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | gyp/libwebp.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'images', 4 'target_name': 'images',
5 'product_name': 'skia_images', 5 'product_name': 'skia_images',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'dependencies': [ 8 'dependencies': [
9 'libjpeg.gyp:*', 9 'libjpeg.gyp:*',
10 'libwebp.gyp:libwebp',
10 'utils.gyp:utils', 11 'utils.gyp:utils',
11 ], 12 ],
12 'export_dependent_settings': [ 13 'export_dependent_settings': [
13 'libjpeg.gyp:*', 14 'libjpeg.gyp:*',
14 ], 15 ],
15 'include_dirs': [ 16 'include_dirs': [
16 '../include/config', 17 '../include/config',
17 '../include/core', 18 '../include/core',
18 '../include/images', 19 '../include/images',
19 '../include/lazy', 20 '../include/lazy',
20 # for access to SkImagePriv.h 21 # for access to SkImagePriv.h
21 '../src/image/', 22 '../src/image/',
22 ], 23 ],
23 'sources': [ 24 'sources': [
24 '../include/images/SkImageDecoder.h', 25 '../include/images/SkImageDecoder.h',
25 '../include/images/SkImageEncoder.h', 26 '../include/images/SkImageEncoder.h',
26 '../include/images/SkImageRef.h', 27 '../include/images/SkImageRef.h',
27 '../include/images/SkImageRef_GlobalPool.h', 28 '../include/images/SkImageRef_GlobalPool.h',
28 '../include/images/SkJpegUtility.h', 29 '../include/images/SkJpegUtility.h',
29 '../include/images/SkMovie.h', 30 '../include/images/SkMovie.h',
30 '../include/images/SkPageFlipper.h', 31 '../include/images/SkPageFlipper.h',
31 32
32 '../src/images/bmpdecoderhelper.cpp', 33 '../src/images/bmpdecoderhelper.cpp',
33 '../src/images/bmpdecoderhelper.h', 34 '../src/images/bmpdecoderhelper.h',
35
36 '../src/images/SkBitmapRegionDecoder.cpp',
37
34 '../src/images/SkImageDecoder.cpp', 38 '../src/images/SkImageDecoder.cpp',
35 '../src/images/SkImageDecoder_Factory.cpp', 39 '../src/images/SkImageDecoder_Factory.cpp',
36 '../src/images/SkImageDecoder_libjpeg.cpp',
37 '../src/images/SkImageDecoder_libbmp.cpp', 40 '../src/images/SkImageDecoder_libbmp.cpp',
38 '../src/images/SkImageDecoder_libgif.cpp', 41 '../src/images/SkImageDecoder_libgif.cpp',
39 '../src/images/SkImageDecoder_libico.cpp', 42 '../src/images/SkImageDecoder_libico.cpp',
43 '../src/images/SkImageDecoder_libjpeg.cpp',
40 '../src/images/SkImageDecoder_libpng.cpp', 44 '../src/images/SkImageDecoder_libpng.cpp',
45 '../src/images/SkImageDecoder_libwebp.cpp',
41 '../src/images/SkImageDecoder_wbmp.cpp', 46 '../src/images/SkImageDecoder_wbmp.cpp',
42 '../src/images/SkImageEncoder.cpp', 47 '../src/images/SkImageEncoder.cpp',
43 '../src/images/SkImageEncoder_Factory.cpp', 48 '../src/images/SkImageEncoder_Factory.cpp',
44 '../src/images/SkImageRef.cpp', 49 '../src/images/SkImageRef.cpp',
45 '../src/images/SkImageRefPool.cpp', 50 '../src/images/SkImageRefPool.cpp',
46 '../src/images/SkImageRefPool.h', 51 '../src/images/SkImageRefPool.h',
47 '../src/images/SkImageRef_ashmem.h', 52 '../src/images/SkImageRef_ashmem.h',
48 '../src/images/SkImageRef_ashmem.cpp', 53 '../src/images/SkImageRef_ashmem.cpp',
49 '../src/images/SkImageRef_GlobalPool.cpp', 54 '../src/images/SkImageRef_GlobalPool.cpp',
50 '../src/images/SkImages.cpp', 55 '../src/images/SkImages.cpp',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 }, 147 },
143 }, 148 },
144 ], 149 ],
145 } 150 }
146 151
147 # Local Variables: 152 # Local Variables:
148 # tab-width:2 153 # tab-width:2
149 # indent-tabs-mode:nil 154 # indent-tabs-mode:nil
150 # End: 155 # End:
151 # vim: set expandtab tabstop=2 shiftwidth=2: 156 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « DEPS ('k') | gyp/libwebp.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698