aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/skcms/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/skcms/BUILD.gn')
-rw-r--r--third_party/skcms/BUILD.gn28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/skcms/BUILD.gn b/third_party/skcms/BUILD.gn
deleted file mode 100644
index d4e5220e2f..0000000000
--- a/third_party/skcms/BUILD.gn
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2018 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("skcms.gni")
-
-config("skcms_public") {
- include_dirs = [ "." ]
-}
-
-source_set("skcms") {
- public_configs = [ ":skcms_public" ]
-
- cflags = []
- if (!is_win || is_clang) {
- cflags += [
- "-w",
- "-std=c11",
- ]
- }
-
- defines = [ "SKCMS_LEGACY_POWF" ]
- public = [
- "skcms.h",
- ]
- sources = skcms_sources
-}