aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-01-25 12:49:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-26 02:07:37 +0000
commitfb33355c36fbc24f5ed6a89a4459e9e59fed0990 (patch)
tree9abe14edf82119461a862765ec6e7288a2a84fa2 /third_party
parent4f505f9c7763df96a97bfb2b8a682da6cb6bf7f1 (diff)
add basic skia -> skcms dependency
This rolls skcms into skia and builds it in dev configurations. We don't use it in any way yet, but if nothing else this gives us roundabout Windows skcms build bots. Bug: skia:7493 Change-Id: Idd945ccd5c7a543841d76ab600cc117f2ee074dc Reviewed-on: https://skia-review.googlesource.com/99880 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/skcms/BUILD.gn29
1 files changed, 29 insertions, 0 deletions
diff --git a/third_party/skcms/BUILD.gn b/third_party/skcms/BUILD.gn
new file mode 100644
index 0000000000..70e2295363
--- /dev/null
+++ b/third_party/skcms/BUILD.gn
@@ -0,0 +1,29 @@
+# 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 = [ "../externals/skcms" ]
+}
+
+source_set("skcms") {
+ public_configs = [ ":skcms_public" ]
+
+ cflags = []
+ if (!is_win || is_clang) {
+ cflags += [
+ "-w",
+ "-std=c11",
+ ]
+ if (!is_clang) {
+ # This seems to be the default in newer GCCs, but of course we test with older GCCs.
+ cflags += [ "-flax-vector-conversions" ]
+ }
+ }
+
+ defines = []
+ sources = [
+ "../externals/skcms/skcms.c",
+ ]
+}