| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 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': { | |
| 7 'includes': [ 'skia_sources.gypi' ] | |
| 8 }, | |
| 9 'targets': [ | 6 'targets': [ |
| 10 { | 7 { |
| 11 'target_name': 'sksl', | 8 'target_name': 'sksl', |
| 12 'type': 'static_library', | 9 'type': 'static_library', |
| 13 'standalone_static_library': 1, | 10 'standalone_static_library': 1, |
| 14 'sources': [ '<@(sksl_sources)' ], | 11 'includes': [ |
| 15 'include_dirs': [ '<@(sksl_include_dirs)' ], | 12 'sksl.gypi', |
| 13 ], |
| 16 'defines': [ | 14 'defines': [ |
| 17 'SKIA' | 15 'SKIA' |
| 18 ], | 16 ], |
| 19 'all_dependent_settings': { | 17 'all_dependent_settings': { |
| 20 'include_dirs': [ | 18 'include_dirs': [ |
| 21 '../src/sksl', | 19 '../src/sksl', |
| 22 ], | 20 ], |
| 23 }, | 21 }, |
| 24 }, | 22 }, |
| 25 ], | 23 ], |
| 26 } | 24 } |
| OLD | NEW |