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 14 matching lines...) Expand all Loading... |
25 '../include/private', | 25 '../include/private', |
26 '../src/lazy', | 26 '../src/lazy', |
27 # for access to SkErrorInternals.h | 27 # for access to SkErrorInternals.h |
28 '../src/core/', | 28 '../src/core/', |
29 # for access to SkImagePriv.h | 29 # for access to SkImagePriv.h |
30 '../src/image/', | 30 '../src/image/', |
31 ], | 31 ], |
32 'sources': [ | 32 'sources': [ |
33 '../include/images/SkForceLinking.h', | 33 '../include/images/SkForceLinking.h', |
34 '../include/images/SkMovie.h', | 34 '../include/images/SkMovie.h', |
35 '../include/images/SkPageFlipper.h', | |
36 | 35 |
37 '../src/images/SkForceLinking.cpp', | 36 '../src/images/SkForceLinking.cpp', |
38 '../src/images/SkMovie_FactoryDefault.cpp', | 37 '../src/images/SkMovie_FactoryDefault.cpp', |
39 | 38 |
40 # If encoders are added/removed to/from (all/individual) | 39 # If encoders are added/removed to/from (all/individual) |
41 # platform(s), be sure to update SkForceLinking.cpp | 40 # platform(s), be sure to update SkForceLinking.cpp |
42 # so the right decoders will be forced to link. | 41 # so the right decoders will be forced to link. |
43 | 42 |
44 '../src/images/SkKTXImageEncoder.cpp', | 43 '../src/images/SkKTXImageEncoder.cpp', |
45 '../src/images/SkWEBPImageEncoder.cpp', | 44 '../src/images/SkWEBPImageEncoder.cpp', |
46 '../src/images/SkJPEGImageEncoder.cpp', | 45 '../src/images/SkJPEGImageEncoder.cpp', |
47 '../src/images/SkPNGImageEncoder.cpp', | 46 '../src/images/SkPNGImageEncoder.cpp', |
48 | 47 |
49 '../src/images/SkImageEncoder.cpp', | 48 '../src/images/SkImageEncoder.cpp', |
50 '../src/images/SkImageEncoder_Factory.cpp', | 49 '../src/images/SkImageEncoder_Factory.cpp', |
51 '../src/images/SkARGBImageEncoder.cpp', | 50 '../src/images/SkARGBImageEncoder.cpp', |
52 '../src/images/SkJPEGWriteUtility.cpp', | 51 '../src/images/SkJPEGWriteUtility.cpp', |
53 '../src/images/SkMovie.cpp', | 52 '../src/images/SkMovie.cpp', |
54 '../src/images/SkGIFMovie.cpp', | 53 '../src/images/SkGIFMovie.cpp', |
55 '../src/images/SkPageFlipper.cpp', | |
56 | 54 |
57 '../src/ports/SkImageEncoder_CG.cpp', | 55 '../src/ports/SkImageEncoder_CG.cpp', |
58 '../src/ports/SkImageEncoder_WIC.cpp', | 56 '../src/ports/SkImageEncoder_WIC.cpp', |
59 ], | 57 ], |
60 'conditions': [ | 58 'conditions': [ |
61 [ 'skia_os == "win"', { | 59 [ 'skia_os == "win"', { |
62 'sources!': [ | 60 'sources!': [ |
63 '../src/images/SkPNGImageEncoder.cpp', | 61 '../src/images/SkPNGImageEncoder.cpp', |
64 '../src/images/SkGIFMovie.cpp', | 62 '../src/images/SkGIFMovie.cpp', |
65 ], | 63 ], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 }], | 119 }], |
122 ], | 120 ], |
123 'direct_dependent_settings': { | 121 'direct_dependent_settings': { |
124 'include_dirs': [ | 122 'include_dirs': [ |
125 '../include/images', | 123 '../include/images', |
126 ], | 124 ], |
127 }, | 125 }, |
128 }, | 126 }, |
129 ], | 127 ], |
130 } | 128 } |
OLD | NEW |