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

Side by Side Diff: third_party/libwebp/BUILD.gn

Issue 2190713004: GN: fix mac build again (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | tools/flags/SkCommandLineFlags.cpp » ('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 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
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 }
OLDNEW
« no previous file with comments | « no previous file | tools/flags/SkCommandLineFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698