blob: 5bd6c399b8a642234ee009aa1378b775f2824fa4 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001# Copyright 2016 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 'includes': [
7 'apptype_console.gypi',
8 ],
brettw45d1b442016-09-06 12:43:55 -07009 'variables': {
10 'includes': [ 'skia_sources.gypi' ],
11 },
ethannicholasb3058bd2016-07-01 08:22:01 -070012 'targets': [
13 {
14 'target_name': 'skslc',
15 'type': 'executable',
brettw45d1b442016-09-06 12:43:55 -070016 'include_dirs': [ '<@(sksl_include_dirs)' ],
ethannicholasb3058bd2016-07-01 08:22:01 -070017 'sources': [
brettw45d1b442016-09-06 12:43:55 -070018 '<@(sksl_sources)',
ethannicholasb3058bd2016-07-01 08:22:01 -070019 '../src/sksl/SkSLMain.cpp',
20 ],
21 'configurations': {
22 'Debug': {
23 'defines': [
24 'DEBUG',
25 ],
26 },
27 },
28 },
29 ],
30}