| 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 'includes': [ | 6 'includes': [ |
| 7 'apptype_console.gypi', | 7 'apptype_console.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { |
| 10 'includes': [ 'skia_sources.gypi' ], |
| 11 }, |
| 9 'targets': [ | 12 'targets': [ |
| 10 { | 13 { |
| 11 'target_name': 'skslc', | 14 'target_name': 'skslc', |
| 12 'type': 'executable', | 15 'type': 'executable', |
| 13 'includes' : [ | 16 'include_dirs': [ '<@(sksl_include_dirs)' ], |
| 14 'sksl.gypi', | |
| 15 ], | |
| 16 'sources': [ | 17 'sources': [ |
| 18 '<@(sksl_sources)', |
| 17 '../src/sksl/SkSLMain.cpp', | 19 '../src/sksl/SkSLMain.cpp', |
| 18 ], | 20 ], |
| 19 'configurations': { | 21 'configurations': { |
| 20 'Debug': { | 22 'Debug': { |
| 21 'defines': [ | 23 'defines': [ |
| 22 'DEBUG', | 24 'DEBUG', |
| 23 ], | 25 ], |
| 24 }, | 26 }, |
| 25 }, | 27 }, |
| 26 }, | 28 }, |
| 27 ], | 29 ], |
| 28 } | 30 } |
| OLD | NEW |