Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 'skia_warnings_as_errors': 0, | 7 'skia_warnings_as_errors': 0, |
| 8 'conditions':[ | 8 'conditions':[ |
| 9 ['skia_android_framework == 1', { | 9 ['skia_android_framework == 1', { |
| 10 'use_system_libwebp': 1, | 10 'use_system_libwebp': 1, |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 236 'libwebp_demux', | 236 'libwebp_demux', |
| 237 'libwebp_dsp', | 237 'libwebp_dsp', |
| 238 'libwebp_dsp_neon', | 238 'libwebp_dsp_neon', |
| 239 'libwebp_enc', | 239 'libwebp_enc', |
| 240 'libwebp_utils', | 240 'libwebp_utils', |
| 241 ], | 241 ], |
| 242 'direct_dependent_settings': { | 242 'direct_dependent_settings': { |
| 243 'include_dirs': [ | 243 'include_dirs': [ |
| 244 '../third_party/externals/libwebp/src', | 244 '../third_party/externals/libwebp/src', |
| 245 ], | 245 ], |
| 246 'cflags': [ '-w' ], | |
|
msarett
2015/10/14 19:49:36
This is not doing what we thought it was doing.
S
| |
| 247 'xcode_settings': { 'WARNING_CFLAGS': [ '-w' ] }, | |
| 248 }, | 246 }, |
| 249 'conditions': [ | 247 'conditions': [ |
| 250 ['OS!="win"', {'product_name': 'webp'}], | 248 ['OS!="win"', {'product_name': 'webp'}], |
| 251 ], | 249 ], |
| 252 }, | 250 }, |
| 253 ], | 251 ], |
| 254 }, { | 252 }, { |
| 255 # use_system_libwebp == 1 | 253 # use_system_libwebp == 1 |
| 256 'targets': [ | 254 'targets': [ |
| 257 { | 255 { |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 280 ], | 278 ], |
| 281 }, | 279 }, |
| 282 }, | 280 }, |
| 283 ], | 281 ], |
| 284 ], | 282 ], |
| 285 } | 283 } |
| 286 ], | 284 ], |
| 287 }], | 285 }], |
| 288 ], | 286 ], |
| 289 } | 287 } |
| OLD | NEW |