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