OLD | NEW |
1 # GYP file for images project. | 1 # GYP file for images project. |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'images', | 5 'target_name': 'images', |
6 'product_name': 'skia_images', | 6 'product_name': 'skia_images', |
7 'type': 'static_library', | 7 'type': 'static_library', |
8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
9 'dependencies': [ | 9 'dependencies': [ |
10 'core.gyp:*', | 10 'core.gyp:*', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'conditions': [ | 77 'conditions': [ |
78 [ 'skia_os == "win"', { | 78 [ 'skia_os == "win"', { |
79 'sources!': [ | 79 'sources!': [ |
80 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 80 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
81 '../src/images/SkImageDecoder_libgif.cpp', | 81 '../src/images/SkImageDecoder_libgif.cpp', |
82 '../src/images/SkImageDecoder_libpng.cpp', | 82 '../src/images/SkImageDecoder_libpng.cpp', |
83 '../src/images/SkMovie_gif.cpp', | 83 '../src/images/SkMovie_gif.cpp', |
84 ], | 84 ], |
85 'link_settings': { | 85 'link_settings': { |
86 'libraries': [ | 86 'libraries': [ |
87 'windowscodecs.lib', | 87 '-lwindowscodecs.lib', |
88 ], | 88 ], |
89 }, | 89 }, |
90 },{ #else if skia_os != win | 90 },{ #else if skia_os != win |
91 'sources!': [ | 91 'sources!': [ |
92 '../src/ports/SkImageDecoder_WIC.cpp', | 92 '../src/ports/SkImageDecoder_WIC.cpp', |
93 ], | 93 ], |
94 }], | 94 }], |
95 [ 'skia_os in ["mac", "ios"]', { | 95 [ 'skia_os in ["mac", "ios"]', { |
96 'sources!': [ | 96 'sources!': [ |
97 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 97 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 }, | 173 }, |
174 }, | 174 }, |
175 ], | 175 ], |
176 } | 176 } |
177 | 177 |
178 # Local Variables: | 178 # Local Variables: |
179 # tab-width:2 | 179 # tab-width:2 |
180 # indent-tabs-mode:nil | 180 # indent-tabs-mode:nil |
181 # End: | 181 # End: |
182 # vim: set expandtab tabstop=2 shiftwidth=2: | 182 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |