OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # GYP file for images project. | 6 # GYP file for images project. |
7 { | 7 { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'images', | 10 'target_name': 'images', |
(...skipping 12 matching lines...) Expand all Loading... |
23 'include_dirs': [ | 23 'include_dirs': [ |
24 '../include/images', | 24 '../include/images', |
25 '../include/private', | 25 '../include/private', |
26 '../src/lazy', | 26 '../src/lazy', |
27 # for access to SkErrorInternals.h | 27 # for access to SkErrorInternals.h |
28 '../src/core/', | 28 '../src/core/', |
29 # for access to SkImagePriv.h | 29 # for access to SkImagePriv.h |
30 '../src/image/', | 30 '../src/image/', |
31 ], | 31 ], |
32 'sources': [ | 32 'sources': [ |
33 '../include/images/SkDecodingImageGenerator.h', | |
34 '../include/images/SkForceLinking.h', | 33 '../include/images/SkForceLinking.h', |
35 '../src/images/SkJpegUtility.h', | 34 '../src/images/SkJpegUtility.h', |
36 '../include/images/SkMovie.h', | 35 '../include/images/SkMovie.h', |
37 '../include/images/SkPageFlipper.h', | 36 '../include/images/SkPageFlipper.h', |
38 | 37 |
39 '../src/images/bmpdecoderhelper.cpp', | 38 '../src/images/bmpdecoderhelper.cpp', |
40 '../src/images/bmpdecoderhelper.h', | 39 '../src/images/bmpdecoderhelper.h', |
41 | 40 |
42 '../src/images/SkDecodingImageGenerator.cpp', | |
43 '../src/images/SkForceLinking.cpp', | 41 '../src/images/SkForceLinking.cpp', |
44 '../src/images/SkImageDecoder.cpp', | 42 '../src/images/SkImageDecoder.cpp', |
45 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 43 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
46 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', | 44 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', |
47 | 45 |
48 # If decoders are added/removed to/from (all/individual) | 46 # If decoders are added/removed to/from (all/individual) |
49 # platform(s), be sure to update SkForceLinking.cpp | 47 # platform(s), be sure to update SkForceLinking.cpp |
50 # so the right decoders will be forced to link. | 48 # so the right decoders will be forced to link. |
51 | 49 |
52 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files | 50 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 }], | 150 }], |
153 ], | 151 ], |
154 'direct_dependent_settings': { | 152 'direct_dependent_settings': { |
155 'include_dirs': [ | 153 'include_dirs': [ |
156 '../include/images', | 154 '../include/images', |
157 ], | 155 ], |
158 }, | 156 }, |
159 }, | 157 }, |
160 ], | 158 ], |
161 } | 159 } |
OLD | NEW |