skia2/gyp/skslc.gyp

31 lines
605 B
Plaintext
Raw Normal View History

# 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',
],
'variables': {
'includes': [ 'skia_sources.gypi' ],
},
'targets': [
{
'target_name': 'skslc',
'type': 'executable',
'include_dirs': [ '<@(sksl_include_dirs)' ],
'sources': [
'<@(sksl_sources)',
'../src/sksl/SkSLMain.cpp',
],
'configurations': {
'Debug': {
'defines': [
'DEBUG',
],
},
},
},
],
}