Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: gyp/images.gyp

Issue 99463002: Libraries without '-l' treated as relative paths. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/xps.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:
OLDNEW
« no previous file with comments | « no previous file | gyp/xps.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698