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

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

Issue 2188643002: GN: dm (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp deps 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 | « third_party/libpng/BUILD.gn ('k') | third_party/third_party.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 declare_args() {
7 }
8
9 import("../third_party.gni")
10
11 third_party("libwebp") {
12 public_include_dirs = [ "../externals/libwebp" ]
13
14 sources = [
15 "../externals/libwebp/src/dec/alpha.c",
16 "../externals/libwebp/src/dec/buffer.c",
17 "../externals/libwebp/src/dec/frame.c",
18 "../externals/libwebp/src/dec/idec.c",
19 "../externals/libwebp/src/dec/io.c",
20 "../externals/libwebp/src/dec/quant.c",
21 "../externals/libwebp/src/dec/tree.c",
22 "../externals/libwebp/src/dec/vp8.c",
23 "../externals/libwebp/src/dec/vp8l.c",
24 "../externals/libwebp/src/dec/webp.c",
25 "../externals/libwebp/src/demux/demux.c",
26 "../externals/libwebp/src/dsp/alpha_processing.c",
27 "../externals/libwebp/src/dsp/alpha_processing_sse2.c",
28 "../externals/libwebp/src/dsp/alpha_processing_sse41.c",
29 "../externals/libwebp/src/dsp/cpu.c",
30 "../externals/libwebp/src/dsp/dec.c",
31 "../externals/libwebp/src/dsp/dec_clip_tables.c",
32 "../externals/libwebp/src/dsp/dec_sse2.c",
33 "../externals/libwebp/src/dsp/dec_sse41.c",
34 "../externals/libwebp/src/dsp/enc.c",
35 "../externals/libwebp/src/dsp/enc_sse2.c",
36 "../externals/libwebp/src/dsp/filters.c",
37 "../externals/libwebp/src/dsp/filters_sse2.c",
38 "../externals/libwebp/src/dsp/lossless.c",
39 "../externals/libwebp/src/dsp/lossless_sse2.c",
40 "../externals/libwebp/src/dsp/rescaler.c",
41 "../externals/libwebp/src/dsp/rescaler_sse2.c",
42 "../externals/libwebp/src/dsp/upsampling.c",
43 "../externals/libwebp/src/dsp/upsampling_sse2.c",
44 "../externals/libwebp/src/dsp/yuv.c",
45 "../externals/libwebp/src/dsp/yuv_sse2.c",
46 "../externals/libwebp/src/utils/bit_reader.c",
47 "../externals/libwebp/src/utils/bit_writer.c",
48 "../externals/libwebp/src/utils/color_cache.c",
49 "../externals/libwebp/src/utils/filters.c",
50 "../externals/libwebp/src/utils/huffman.c",
51 "../externals/libwebp/src/utils/huffman_encode.c",
52 "../externals/libwebp/src/utils/quant_levels.c",
53 "../externals/libwebp/src/utils/quant_levels_dec.c",
54 "../externals/libwebp/src/utils/random.c",
55 "../externals/libwebp/src/utils/rescaler.c",
56 "../externals/libwebp/src/utils/thread.c",
57 "../externals/libwebp/src/utils/utils.c",
58 ]
59 }
OLDNEW
« no previous file with comments | « third_party/libpng/BUILD.gn ('k') | third_party/third_party.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698