1# Copyright 2015 Google Inc. 2# 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5{ 6 'variables': { 7 'skia_warnings_as_errors': 0, 8 }, 9 'targets': [ 10 { 11 'target_name': 'libSkKTX', 12 'type': 'static_library', 13 'include_dirs' : [ 14 '../third_party/ktx', 15 '../include/gpu', 16 '../src/core', 17 '../src/gpu', 18 '../src/utils', 19 ], 20 'sources': [ 21 '../third_party/ktx/ktx.cpp', 22 ], 23 'dependencies': [ 24 'core.gyp:*', 25 'etc1.gyp:libetc1', 26 ], 27 'direct_dependent_settings': { 28 'include_dirs': [ 29 '../third_party/ktx', 30 ], 31 }, 32 }], 33} 34