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

Side by Side Diff: third_party/libwebp/libwebp.gyp

Issue 14328020: Linux: fix compatibility with libwebp-0.3 for use_system_libwebp=1 case. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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 | tools/compile_test/compile_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'use_system_libwebp%': 0, 7 'use_system_libwebp%': 0,
8 }, 8 },
9 'conditions': [ 9 'conditions': [
10 ['use_system_libwebp==0', { 10 ['use_system_libwebp==0', {
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 { 155 {
156 'target_name': 'libwebp', 156 'target_name': 'libwebp',
157 'type': 'none', 157 'type': 'none',
158 'direct_dependent_settings': { 158 'direct_dependent_settings': {
159 'defines': [ 159 'defines': [
160 'ENABLE_WEBP', 160 'ENABLE_WEBP',
161 ], 161 ],
162 }, 162 },
163 'link_settings': { 163 'link_settings': {
164 'libraries': [ 164 'libraries': [
165 '-lwebp', 165 # Check for presence of webpdemux library, use it if present.
166 '<!(python ../../tools/compile_test/compile_test.py '
jzern 2013/04/18 21:47:01 would this be better written as (DEPTH)/tools ?
Paweł Hajdan Jr. 2013/04/18 22:08:06 Done.
167 '--code "int main() { return 0; }" '
168 '--run-linker '
169 '--on-success "-lwebp -lwebpdemux" '
170 '--on-failure "-lwebp" '
171 '-- -lwebpdemux)',
166 ], 172 ],
167 }, 173 },
168 } 174 }
169 ], 175 ],
170 }], 176 }],
171 ], 177 ],
172 } 178 }
OLDNEW
« no previous file with comments | « no previous file | tools/compile_test/compile_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698