| 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 | |
| 82 '../src/ports/SkImageDecoder_CG.cpp', | 80 '../src/ports/SkImageDecoder_CG.cpp', |
| 83 '../src/ports/SkImageDecoder_WIC.cpp', | 81 '../src/ports/SkImageDecoder_WIC.cpp', |
| 84 ], | 82 ], |
| 85 'conditions': [ | 83 'conditions': [ |
| 86 [ 'skia_os == "win"', { | 84 [ 'skia_os == "win"', { |
| 87 'sources!': [ | 85 'sources!': [ |
| 88 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 86 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
| 89 '../src/images/SkImageDecoder_libgif.cpp', | 87 '../src/images/SkImageDecoder_libgif.cpp', |
| 90 '../src/images/SkImageDecoder_libpng.cpp', | 88 '../src/images/SkImageDecoder_libpng.cpp', |
| 91 '../src/images/SkMovie_gif.cpp', | 89 '../src/images/SkMovie_gif.cpp', |
| (...skipping 60 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 |