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