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',
|
|
|
|
],
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'skslc',
|
|
|
|
'type': 'executable',
|
2016-10-26 18:17:04 +00:00
|
|
|
'include_dirs': [
|
2016-11-21 15:39:35 +00:00
|
|
|
'../include/config',
|
|
|
|
'../include/core',
|
|
|
|
'../include/gpu',
|
|
|
|
'../include/private',
|
|
|
|
'../include/utils',
|
|
|
|
'../src/core',
|
|
|
|
'../src/gpu',
|
|
|
|
'../src/utils',
|
2016-10-26 18:17:04 +00:00
|
|
|
],
|
2016-07-01 15:22:01 +00:00
|
|
|
'sources': [
|
2016-10-26 18:17:04 +00:00
|
|
|
'<!@(python read_gni.py ../gn/sksl.gni skia_sksl_sources)',
|
2016-07-01 15:22:01 +00:00
|
|
|
'../src/sksl/SkSLMain.cpp',
|
|
|
|
],
|
2016-11-11 20:16:46 +00:00
|
|
|
'dependencies': [
|
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
],
|
2016-07-01 15:22:01 +00:00
|
|
|
'configurations': {
|
|
|
|
'Debug': {
|
|
|
|
'defines': [
|
|
|
|
'DEBUG',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|