aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar Leon Scroggins III <scroggo@google.com>2016-12-15 12:20:46 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-15 21:15:54 +0000
commitada12ab0557a1f540e775288e2ce44f64fcd8c7e (patch)
tree2763c7b58e32ff5a39b91ffa55f75c9b8c5300d8 /gyp
parent1b9924ffb7602fd6871359aee0a9660cefbaa812 (diff)
Remove all KTX support
It is untested and unused. Change-Id: I010ff4ad942738f362d42a99af4edbbb1cb0cd71 Reviewed-on: https://skia-review.googlesource.com/6142 Commit-Queue: Leon Scroggins <scroggo@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org> Reviewed-by: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'gyp')
-rw-r--r--gyp/gpu.gyp1
-rw-r--r--gyp/ktx.gyp34
2 files changed, 0 insertions, 35 deletions
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp
index 8b50fdacea..634a45836b 100644
--- a/gyp/gpu.gyp
+++ b/gyp/gpu.gyp
@@ -80,7 +80,6 @@
'core.gyp:*',
'utils.gyp:utils',
'etc1.gyp:libetc1',
- 'ktx.gyp:libSkKTX',
'sksl.gyp:sksl',
],
'include_dirs': [
diff --git a/gyp/ktx.gyp b/gyp/ktx.gyp
deleted file mode 100644
index e01ef1fc17..0000000000
--- a/gyp/ktx.gyp
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2015 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-{
- 'variables': {
- 'skia_warnings_as_errors': 0,
- },
- 'targets': [
- {
- 'target_name': 'libSkKTX',
- 'type': 'static_library',
- 'include_dirs' : [
- '../third_party/ktx',
- '../include/gpu',
- '../include/private',
- '../src/core',
- '../src/gpu',
- '../src/utils',
- ],
- 'sources': [
- '../third_party/ktx/ktx.cpp',
- ],
- 'dependencies': [
- 'core.gyp:*',
- 'etc1.gyp:libetc1',
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '../third_party/ktx',
- ],
- },
- }],
-}