2016-07-01 15:22:01 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
|
|
'includes': [
|
|
|
|
'apptype_console.gypi',
|
|
|
|
],
|
2016-09-06 19:43:55 +00:00
|
|
|
'variables': {
|
|
|
|
'includes': [ 'skia_sources.gypi' ],
|
|
|
|
},
|
2016-07-01 15:22:01 +00:00
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'skslc',
|
|
|
|
'type': 'executable',
|
2016-09-06 19:43:55 +00:00
|
|
|
'include_dirs': [ '<@(sksl_include_dirs)' ],
|
2016-07-01 15:22:01 +00:00
|
|
|
'sources': [
|
2016-09-06 19:43:55 +00:00
|
|
|
'<@(sksl_sources)',
|
2016-07-01 15:22:01 +00:00
|
|
|
'../src/sksl/SkSLMain.cpp',
|
|
|
|
],
|
|
|
|
'configurations': {
|
|
|
|
'Debug': {
|
|
|
|
'defines': [
|
|
|
|
'DEBUG',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|