skia2/third_party/libwebp/BUILD.gn
mtklein 25c81d4e65 GN: dm
This builds, links, and runs on Linux.  Have not tried Mac.

I've tested is_debug={true,false} and is_component_build.
It's neat that the component build DM works, but it's also an indication I've missed an essential flag or two... it shouldn't work. :)

The GPU backend isn't working yet, but all the software configurations I've tried look good.

This fleshes out all the other parts of SkCodec too... I noticed we weren't able to decode gifs or webp.

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2188643002

Review-Url: https://codereview.chromium.org/2188643002
2016-07-27 13:55:27 -07:00

60 lines
2.3 KiB
Plaintext

# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
declare_args() {
}
import("../third_party.gni")
third_party("libwebp") {
public_include_dirs = [ "../externals/libwebp" ]
sources = [
"../externals/libwebp/src/dec/alpha.c",
"../externals/libwebp/src/dec/buffer.c",
"../externals/libwebp/src/dec/frame.c",
"../externals/libwebp/src/dec/idec.c",
"../externals/libwebp/src/dec/io.c",
"../externals/libwebp/src/dec/quant.c",
"../externals/libwebp/src/dec/tree.c",
"../externals/libwebp/src/dec/vp8.c",
"../externals/libwebp/src/dec/vp8l.c",
"../externals/libwebp/src/dec/webp.c",
"../externals/libwebp/src/demux/demux.c",
"../externals/libwebp/src/dsp/alpha_processing.c",
"../externals/libwebp/src/dsp/alpha_processing_sse2.c",
"../externals/libwebp/src/dsp/alpha_processing_sse41.c",
"../externals/libwebp/src/dsp/cpu.c",
"../externals/libwebp/src/dsp/dec.c",
"../externals/libwebp/src/dsp/dec_clip_tables.c",
"../externals/libwebp/src/dsp/dec_sse2.c",
"../externals/libwebp/src/dsp/dec_sse41.c",
"../externals/libwebp/src/dsp/enc.c",
"../externals/libwebp/src/dsp/enc_sse2.c",
"../externals/libwebp/src/dsp/filters.c",
"../externals/libwebp/src/dsp/filters_sse2.c",
"../externals/libwebp/src/dsp/lossless.c",
"../externals/libwebp/src/dsp/lossless_sse2.c",
"../externals/libwebp/src/dsp/rescaler.c",
"../externals/libwebp/src/dsp/rescaler_sse2.c",
"../externals/libwebp/src/dsp/upsampling.c",
"../externals/libwebp/src/dsp/upsampling_sse2.c",
"../externals/libwebp/src/dsp/yuv.c",
"../externals/libwebp/src/dsp/yuv_sse2.c",
"../externals/libwebp/src/utils/bit_reader.c",
"../externals/libwebp/src/utils/bit_writer.c",
"../externals/libwebp/src/utils/color_cache.c",
"../externals/libwebp/src/utils/filters.c",
"../externals/libwebp/src/utils/huffman.c",
"../externals/libwebp/src/utils/huffman_encode.c",
"../externals/libwebp/src/utils/quant_levels.c",
"../externals/libwebp/src/utils/quant_levels_dec.c",
"../externals/libwebp/src/utils/random.c",
"../externals/libwebp/src/utils/rescaler.c",
"../externals/libwebp/src/utils/thread.c",
"../externals/libwebp/src/utils/utils.c",
]
}