| 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 29 matching lines...) Expand all Loading... |
| 40 # platform(s), be sure to update SkForceLinking.cpp | 40 # platform(s), be sure to update SkForceLinking.cpp |
| 41 # so the right decoders will be forced to link. | 41 # so the right decoders will be forced to link. |
| 42 | 42 |
| 43 '../src/images/SkKTXImageEncoder.cpp', | 43 '../src/images/SkKTXImageEncoder.cpp', |
| 44 '../src/images/SkWEBPImageEncoder.cpp', | 44 '../src/images/SkWEBPImageEncoder.cpp', |
| 45 '../src/images/SkJPEGImageEncoder.cpp', | 45 '../src/images/SkJPEGImageEncoder.cpp', |
| 46 '../src/images/SkPNGImageEncoder.cpp', | 46 '../src/images/SkPNGImageEncoder.cpp', |
| 47 | 47 |
| 48 '../src/images/SkImageEncoder.cpp', | 48 '../src/images/SkImageEncoder.cpp', |
| 49 '../src/images/SkImageEncoder_Factory.cpp', | 49 '../src/images/SkImageEncoder_Factory.cpp', |
| 50 '../src/images/SkARGBImageEncoder.cpp', | |
| 51 '../src/images/SkJPEGWriteUtility.cpp', | 50 '../src/images/SkJPEGWriteUtility.cpp', |
| 52 '../src/images/SkMovie.cpp', | 51 '../src/images/SkMovie.cpp', |
| 53 '../src/images/SkGIFMovie.cpp', | 52 '../src/images/SkGIFMovie.cpp', |
| 54 | 53 |
| 55 '../src/ports/SkImageEncoder_CG.cpp', | 54 '../src/ports/SkImageEncoder_CG.cpp', |
| 56 '../src/ports/SkImageEncoder_WIC.cpp', | 55 '../src/ports/SkImageEncoder_WIC.cpp', |
| 57 ], | 56 ], |
| 58 'conditions': [ | 57 'conditions': [ |
| 59 [ 'skia_os == "win"', { | 58 [ 'skia_os == "win"', { |
| 60 'sources!': [ | 59 'sources!': [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 }], | 113 }], |
| 115 ], | 114 ], |
| 116 'direct_dependent_settings': { | 115 'direct_dependent_settings': { |
| 117 'include_dirs': [ | 116 'include_dirs': [ |
| 118 '../include/images', | 117 '../include/images', |
| 119 ], | 118 ], |
| 120 }, | 119 }, |
| 121 }, | 120 }, |
| 122 ], | 121 ], |
| 123 } | 122 } |
| OLD | NEW |