| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 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 declare_args() { | 6 declare_args() { |
| 7 } | 7 } |
| 8 | 8 |
| 9 import("../third_party.gni") | 9 import("../third_party.gni") |
| 10 | 10 |
| 11 third_party("libwebp") { | 11 third_party("libwebp") { |
| 12 public_include_dirs = [ "../externals/libwebp" ] | 12 public_include_dirs = [ "../externals/libwebp/src" ] |
| 13 | 13 |
| 14 sources = [ | 14 sources = [ |
| 15 "../externals/libwebp/src/dec/alpha.c", | 15 "../externals/libwebp/src/dec/alpha.c", |
| 16 "../externals/libwebp/src/dec/buffer.c", | 16 "../externals/libwebp/src/dec/buffer.c", |
| 17 "../externals/libwebp/src/dec/frame.c", | 17 "../externals/libwebp/src/dec/frame.c", |
| 18 "../externals/libwebp/src/dec/idec.c", | 18 "../externals/libwebp/src/dec/idec.c", |
| 19 "../externals/libwebp/src/dec/io.c", | 19 "../externals/libwebp/src/dec/io.c", |
| 20 "../externals/libwebp/src/dec/quant.c", | 20 "../externals/libwebp/src/dec/quant.c", |
| 21 "../externals/libwebp/src/dec/tree.c", | 21 "../externals/libwebp/src/dec/tree.c", |
| 22 "../externals/libwebp/src/dec/vp8.c", | 22 "../externals/libwebp/src/dec/vp8.c", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 50 "../externals/libwebp/src/utils/huffman.c", | 50 "../externals/libwebp/src/utils/huffman.c", |
| 51 "../externals/libwebp/src/utils/huffman_encode.c", | 51 "../externals/libwebp/src/utils/huffman_encode.c", |
| 52 "../externals/libwebp/src/utils/quant_levels.c", | 52 "../externals/libwebp/src/utils/quant_levels.c", |
| 53 "../externals/libwebp/src/utils/quant_levels_dec.c", | 53 "../externals/libwebp/src/utils/quant_levels_dec.c", |
| 54 "../externals/libwebp/src/utils/random.c", | 54 "../externals/libwebp/src/utils/random.c", |
| 55 "../externals/libwebp/src/utils/rescaler.c", | 55 "../externals/libwebp/src/utils/rescaler.c", |
| 56 "../externals/libwebp/src/utils/thread.c", | 56 "../externals/libwebp/src/utils/thread.c", |
| 57 "../externals/libwebp/src/utils/utils.c", | 57 "../externals/libwebp/src/utils/utils.c", |
| 58 ] | 58 ] |
| 59 } | 59 } |
| OLD | NEW |