| 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 13 matching lines...) Expand all Loading... |
| 24 '../include/images', | 24 '../include/images', |
| 25 '../src/lazy', | 25 '../src/lazy', |
| 26 # for access to SkErrorInternals.h | 26 # for access to SkErrorInternals.h |
| 27 '../src/core/', | 27 '../src/core/', |
| 28 # for access to SkImagePriv.h | 28 # for access to SkImagePriv.h |
| 29 '../src/image/', | 29 '../src/image/', |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 '../include/images/SkDecodingImageGenerator.h', | 32 '../include/images/SkDecodingImageGenerator.h', |
| 33 '../include/images/SkForceLinking.h', | 33 '../include/images/SkForceLinking.h', |
| 34 '../src/images/SkJpegUtility_images.h', | 34 '../src/images/SkJpegUtility.h', |
| 35 '../include/images/SkMovie.h', | 35 '../include/images/SkMovie.h', |
| 36 '../include/images/SkPageFlipper.h', | 36 '../include/images/SkPageFlipper.h', |
| 37 | 37 |
| 38 '../src/images/bmpdecoderhelper.cpp', | 38 '../src/images/bmpdecoderhelper.cpp', |
| 39 '../src/images/bmpdecoderhelper.h', | 39 '../src/images/bmpdecoderhelper.h', |
| 40 | 40 |
| 41 '../src/images/SkDecodingImageGenerator.cpp', | 41 '../src/images/SkDecodingImageGenerator.cpp', |
| 42 '../src/images/SkForceLinking.cpp', | 42 '../src/images/SkForceLinking.cpp', |
| 43 '../src/images/SkImageDecoder.cpp', | 43 '../src/images/SkImageDecoder.cpp', |
| 44 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 44 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 62 '../src/images/SkImageDecoder_libbmp.cpp', | 62 '../src/images/SkImageDecoder_libbmp.cpp', |
| 63 '../src/images/SkImageDecoder_libgif.cpp', | 63 '../src/images/SkImageDecoder_libgif.cpp', |
| 64 '../src/images/SkImageDecoder_libico.cpp', | 64 '../src/images/SkImageDecoder_libico.cpp', |
| 65 '../src/images/SkImageDecoder_libwebp.cpp', | 65 '../src/images/SkImageDecoder_libwebp.cpp', |
| 66 '../src/images/SkImageDecoder_libjpeg.cpp', | 66 '../src/images/SkImageDecoder_libjpeg.cpp', |
| 67 '../src/images/SkImageDecoder_libpng.cpp', | 67 '../src/images/SkImageDecoder_libpng.cpp', |
| 68 | 68 |
| 69 '../src/images/SkImageEncoder.cpp', | 69 '../src/images/SkImageEncoder.cpp', |
| 70 '../src/images/SkImageEncoder_Factory.cpp', | 70 '../src/images/SkImageEncoder_Factory.cpp', |
| 71 '../src/images/SkImageEncoder_argb.cpp', | 71 '../src/images/SkImageEncoder_argb.cpp', |
| 72 '../src/images/SkJpegUtility_images.cpp', | 72 '../src/images/SkJpegUtility.cpp', |
| 73 '../src/images/SkMovie.cpp', | 73 '../src/images/SkMovie.cpp', |
| 74 '../src/images/SkMovie_gif.cpp', | 74 '../src/images/SkMovie_gif.cpp', |
| 75 '../src/images/SkPageFlipper.cpp', | 75 '../src/images/SkPageFlipper.cpp', |
| 76 '../src/images/SkScaledBitmapSampler.cpp', | 76 '../src/images/SkScaledBitmapSampler.cpp', |
| 77 '../src/images/SkScaledBitmapSampler.h', | 77 '../src/images/SkScaledBitmapSampler.h', |
| 78 | 78 |
| 79 '../src/ports/SkImageGenerator_skia.cpp', | 79 '../src/ports/SkImageGenerator_skia.cpp', |
| 80 | 80 |
| 81 '../src/ports/SkImageDecoder_CG.cpp', | 81 '../src/ports/SkImageDecoder_CG.cpp', |
| 82 '../src/ports/SkImageDecoder_WIC.cpp', | 82 '../src/ports/SkImageDecoder_WIC.cpp', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 }], | 159 }], |
| 160 ], | 160 ], |
| 161 'direct_dependent_settings': { | 161 'direct_dependent_settings': { |
| 162 'include_dirs': [ | 162 'include_dirs': [ |
| 163 '../include/images', | 163 '../include/images', |
| 164 ], | 164 ], |
| 165 }, | 165 }, |
| 166 }, | 166 }, |
| 167 ], | 167 ], |
| 168 } | 168 } |
| OLD | NEW |