162b20399b
https://skia.googlesource.com/skcms.git/+log/33bdf05..513d372 2018-05-02 mtklein@chromium.org list _all_ sources in BUILD.gn The AutoRoll server is located here: https://skcms-skia-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=brianosman@google.com Change-Id: Ib1c1f395221a350551f6e00979b31932536f9948 Reviewed-on: https://skia-review.googlesource.com/125322 Commit-Queue: skcms-skia-autoroll <skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by: skcms-skia-autoroll <skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
43 lines
794 B
Plaintext
43 lines
794 B
Plaintext
# Copyright 2018 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
config("skcms_public") {
|
|
include_dirs = [ "." ]
|
|
}
|
|
|
|
source_set("skcms") {
|
|
public_configs = [ ":skcms_public" ]
|
|
|
|
cflags = []
|
|
if (!is_win || is_clang) {
|
|
cflags += [
|
|
"-w",
|
|
"-std=c11",
|
|
]
|
|
}
|
|
|
|
defines = []
|
|
public = [
|
|
"skcms.h",
|
|
]
|
|
sources = [
|
|
"src/GaussNewton.c",
|
|
"src/GaussNewton.h",
|
|
"src/ICCProfile.c",
|
|
"src/LinearAlgebra.c",
|
|
"src/LinearAlgebra.h",
|
|
"src/Macros.h",
|
|
"src/PolyTF.c",
|
|
"src/PortableMath.c",
|
|
"src/PortableMath.h",
|
|
"src/RandomBytes.h",
|
|
"src/TransferFunction.c",
|
|
"src/TransferFunction.h",
|
|
"src/Transform.c",
|
|
"src/Transform.h",
|
|
"src/Transform_inl.h",
|
|
]
|
|
}
|