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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 '../src/images/SkImageEncoder.cpp', | 70 '../src/images/SkImageEncoder.cpp', |
71 '../src/images/SkImageEncoder_Factory.cpp', | 71 '../src/images/SkImageEncoder_Factory.cpp', |
72 '../src/images/SkImageEncoder_argb.cpp', | 72 '../src/images/SkImageEncoder_argb.cpp', |
73 '../src/images/SkJpegUtility.cpp', | 73 '../src/images/SkJpegUtility.cpp', |
74 '../src/images/SkMovie.cpp', | 74 '../src/images/SkMovie.cpp', |
75 '../src/images/SkMovie_gif.cpp', | 75 '../src/images/SkMovie_gif.cpp', |
76 '../src/images/SkPageFlipper.cpp', | 76 '../src/images/SkPageFlipper.cpp', |
77 '../src/images/SkScaledBitmapSampler.cpp', | 77 '../src/images/SkScaledBitmapSampler.cpp', |
78 '../src/images/SkScaledBitmapSampler.h', | 78 '../src/images/SkScaledBitmapSampler.h', |
79 | 79 |
| 80 '../src/ports/SkImageGenerator_skia.cpp', |
| 81 |
80 '../src/ports/SkImageDecoder_CG.cpp', | 82 '../src/ports/SkImageDecoder_CG.cpp', |
81 '../src/ports/SkImageDecoder_WIC.cpp', | 83 '../src/ports/SkImageDecoder_WIC.cpp', |
82 ], | 84 ], |
83 'conditions': [ | 85 'conditions': [ |
84 [ 'skia_os == "win"', { | 86 [ 'skia_os == "win"', { |
85 'sources!': [ | 87 'sources!': [ |
86 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 88 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
87 '../src/images/SkImageDecoder_libgif.cpp', | 89 '../src/images/SkImageDecoder_libgif.cpp', |
88 '../src/images/SkImageDecoder_libpng.cpp', | 90 '../src/images/SkImageDecoder_libpng.cpp', |
89 '../src/images/SkMovie_gif.cpp', | 91 '../src/images/SkMovie_gif.cpp', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 }], | 152 }], |
151 ], | 153 ], |
152 'direct_dependent_settings': { | 154 'direct_dependent_settings': { |
153 'include_dirs': [ | 155 'include_dirs': [ |
154 '../include/images', | 156 '../include/images', |
155 ], | 157 ], |
156 }, | 158 }, |
157 }, | 159 }, |
158 ], | 160 ], |
159 } | 161 } |
OLD | NEW |