OLD | NEW |
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 13 matching lines...) Expand all Loading... |
24 '../include/images', | 24 '../include/images', |
25 '../src/lazy', | 25 '../src/lazy', |
26 # for access to SkErrorInternals.h | 26 # for access to SkErrorInternals.h |
27 '../src/core/', | 27 '../src/core/', |
28 # for access to SkImagePriv.h | 28 # for access to SkImagePriv.h |
29 '../src/image/', | 29 '../src/image/', |
30 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h | 30 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h |
31 '../src/images/', | 31 '../src/images/', |
32 ], | 32 ], |
33 'sources': [ | 33 'sources': [ |
| 34 '../include/images/SkDecodingImageGenerator.h', |
34 '../include/images/SkForceLinking.h', | 35 '../include/images/SkForceLinking.h', |
35 '../include/images/SkImageRef.h', | 36 '../include/images/SkImageRef.h', |
36 '../include/images/SkImageRef_GlobalPool.h', | 37 '../include/images/SkImageRef_GlobalPool.h', |
37 '../src/images/SkJpegUtility.h', | 38 '../src/images/SkJpegUtility.h', |
38 '../include/images/SkMovie.h', | 39 '../include/images/SkMovie.h', |
39 '../include/images/SkPageFlipper.h', | 40 '../include/images/SkPageFlipper.h', |
40 | 41 |
41 '../src/images/bmpdecoderhelper.cpp', | 42 '../src/images/bmpdecoderhelper.cpp', |
42 '../src/images/bmpdecoderhelper.h', | 43 '../src/images/bmpdecoderhelper.h', |
43 | 44 |
44 '../src/images/SkDecodingImageGenerator.cpp', | 45 '../src/images/SkDecodingImageGenerator.cpp', |
45 '../src/images/SkDecodingImageGenerator.h', | |
46 '../src/images/SkForceLinking.cpp', | 46 '../src/images/SkForceLinking.cpp', |
47 '../src/images/SkImageDecoder.cpp', | 47 '../src/images/SkImageDecoder.cpp', |
48 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 48 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
49 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', | 49 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', |
50 | 50 |
51 # If decoders are added/removed to/from (all/individual) | 51 # If decoders are added/removed to/from (all/individual) |
52 # platform(s), be sure to update SkForceLinking.cpp | 52 # platform(s), be sure to update SkForceLinking.cpp |
53 # so the right decoders will be forced to link. | 53 # so the right decoders will be forced to link. |
54 | 54 |
55 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files | 55 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 }], | 174 }], |
175 ], | 175 ], |
176 'direct_dependent_settings': { | 176 'direct_dependent_settings': { |
177 'include_dirs': [ | 177 'include_dirs': [ |
178 '../include/images', | 178 '../include/images', |
179 ], | 179 ], |
180 }, | 180 }, |
181 }, | 181 }, |
182 ], | 182 ], |
183 } | 183 } |
OLD | NEW |