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