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 # This allows us to build libwebp with a custom config.h file. It is currently | 6 # This allows us to build libwebp with a custom config.h file. It is currently |
7 # needed to work around skbug.com/4037, but perhaps we might have another need | 7 # needed to work around https://bug.skia.org/4037 , but perhaps we might have an
other need |
8 # for it in the future. | 8 # for it in the future. |
9 { | 9 { |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '../third_party/libwebp/webp', | 11 '../third_party/libwebp/webp', |
12 ], | 12 ], |
13 'defines': [ | 13 'defines': [ |
14 'HAVE_CONFIG_H', | 14 'HAVE_CONFIG_H', |
15 'WEBP_SWAP_16BIT_CSP', | 15 'WEBP_SWAP_16BIT_CSP', |
16 ], | 16 ], |
17 } | 17 } |
OLD | NEW |