9e1138d566
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5084 Change-Id: Ib21c30afc0d8483392b417e660b7fecfcc30e617 Reviewed-on: https://skia-review.googlesource.com/5084 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
40 lines
839 B
Python
40 lines
839 B
Python
# 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',
|
|
'include_dirs': [
|
|
'../include/config',
|
|
'../include/core',
|
|
'../include/gpu',
|
|
'../include/private',
|
|
'../include/utils',
|
|
'../src/core',
|
|
'../src/gpu',
|
|
'../src/utils',
|
|
],
|
|
'sources': [
|
|
'<!@(python read_gni.py ../gn/sksl.gni skia_sksl_sources)',
|
|
'../src/sksl/SkSLMain.cpp',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
],
|
|
'configurations': {
|
|
'Debug': {
|
|
'defines': [
|
|
'DEBUG',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
}
|