6b6674d321
I'd have done this as two steps, but we didn't have a pure copy of libpng to start with. The patches we did have, though, have been upstreamed and are now unneeded. Change-Id: I884b9bc47afe5000f5a521f66a3bb95c0411b39a Reviewed-on: https://skia-review.googlesource.com/48620 Reviewed-by: Leon Scroggins <scroggo@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
61 lines
1.5 KiB
Plaintext
61 lines
1.5 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() {
|
|
skia_use_system_libpng = is_official_build
|
|
}
|
|
|
|
import("../third_party.gni")
|
|
|
|
if (skia_use_system_libpng) {
|
|
system("libpng") {
|
|
libs = [ "png" ]
|
|
}
|
|
} else {
|
|
third_party("libpng") {
|
|
public_include_dirs = [
|
|
".",
|
|
"../externals/libpng",
|
|
]
|
|
|
|
defines = []
|
|
deps = [
|
|
"//third_party/zlib",
|
|
]
|
|
sources = [
|
|
"../externals/libpng/png.c",
|
|
"../externals/libpng/pngerror.c",
|
|
"../externals/libpng/pngget.c",
|
|
"../externals/libpng/pngmem.c",
|
|
"../externals/libpng/pngpread.c",
|
|
"../externals/libpng/pngread.c",
|
|
"../externals/libpng/pngrio.c",
|
|
"../externals/libpng/pngrtran.c",
|
|
"../externals/libpng/pngrutil.c",
|
|
"../externals/libpng/pngset.c",
|
|
"../externals/libpng/pngtrans.c",
|
|
"../externals/libpng/pngwio.c",
|
|
"../externals/libpng/pngwrite.c",
|
|
"../externals/libpng/pngwtran.c",
|
|
"../externals/libpng/pngwutil.c",
|
|
]
|
|
|
|
if (current_cpu == "arm" || current_cpu == "arm64") {
|
|
sources += [
|
|
"../externals/libpng/arm/arm_init.c",
|
|
"../externals/libpng/arm/filter_neon_intrinsics.c",
|
|
]
|
|
}
|
|
|
|
if (current_cpu == "x86" || current_cpu == "x64") {
|
|
defines += [ "PNG_INTEL_SSE" ]
|
|
sources += [
|
|
"../externals/libpng/intel/filter_sse2_intrinsics.c",
|
|
"../externals/libpng/intel/intel_init.c",
|
|
]
|
|
}
|
|
}
|
|
}
|