25c81d4e65
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
33 lines
830 B
Plaintext
33 lines
830 B
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("zlib") {
|
|
public_include_dirs = [ "../externals/zlib" ]
|
|
|
|
sources = [
|
|
"../externals/zlib/adler32.c",
|
|
"../externals/zlib/compress.c",
|
|
"../externals/zlib/crc32.c",
|
|
"../externals/zlib/deflate.c",
|
|
"../externals/zlib/gzclose.c",
|
|
"../externals/zlib/gzlib.c",
|
|
"../externals/zlib/gzread.c",
|
|
"../externals/zlib/gzwrite.c",
|
|
"../externals/zlib/infback.c",
|
|
"../externals/zlib/inffast.c",
|
|
"../externals/zlib/inflate.c",
|
|
"../externals/zlib/inftrees.c",
|
|
"../externals/zlib/simd_stub.c",
|
|
"../externals/zlib/trees.c",
|
|
"../externals/zlib/uncompr.c",
|
|
"../externals/zlib/zutil.c",
|
|
]
|
|
}
|