2016-07-27 18:17:18 +00:00
|
|
|
# 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() {
|
2016-11-01 15:46:10 +00:00
|
|
|
skia_use_system_libpng = false
|
2016-07-27 18:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
import("../third_party.gni")
|
|
|
|
|
2016-11-01 15:46:10 +00:00
|
|
|
if (skia_use_system_libpng) {
|
|
|
|
system("libpng") {
|
|
|
|
libs = [ "png" ]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
third_party("libpng") {
|
|
|
|
public_include_dirs = [ "." ]
|
2016-08-25 21:50:44 +00:00
|
|
|
|
2016-11-07 21:56:53 +00:00
|
|
|
defines = []
|
2016-11-01 15:46:10 +00:00
|
|
|
deps = [
|
|
|
|
"//third_party/zlib",
|
2016-08-25 21:50:44 +00:00
|
|
|
]
|
2016-11-01 15:46:10 +00:00
|
|
|
sources = [
|
|
|
|
"png.c",
|
|
|
|
"pngerror.c",
|
|
|
|
"pngget.c",
|
|
|
|
"pngmem.c",
|
|
|
|
"pngpread.c",
|
|
|
|
"pngread.c",
|
|
|
|
"pngrio.c",
|
|
|
|
"pngrtran.c",
|
|
|
|
"pngrutil.c",
|
|
|
|
"pngset.c",
|
|
|
|
"pngtrans.c",
|
|
|
|
"pngwio.c",
|
|
|
|
"pngwrite.c",
|
|
|
|
"pngwtran.c",
|
|
|
|
"pngwutil.c",
|
|
|
|
]
|
|
|
|
|
|
|
|
if (current_cpu == "arm" || current_cpu == "arm64") {
|
|
|
|
sources += [
|
|
|
|
"arm/arm_init.c",
|
|
|
|
"arm/filter_neon_intrinsics.c",
|
|
|
|
]
|
|
|
|
}
|
2016-11-07 21:56:53 +00:00
|
|
|
|
|
|
|
if (current_cpu == "x86" || current_cpu == "x64") {
|
|
|
|
defines += [ "PNG_INTEL_SSE" ]
|
|
|
|
sources += [
|
|
|
|
"contrib/intel/filter_sse2_intrinsics.c",
|
|
|
|
"contrib/intel/intel_init.c",
|
|
|
|
]
|
|
|
|
}
|
2016-08-25 21:50:44 +00:00
|
|
|
}
|
2016-07-27 18:17:18 +00:00
|
|
|
}
|