2016-01-13 20:57:57 +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': 'fuzz',
|
|
|
|
'type': 'executable',
|
2016-04-12 19:02:59 +00:00
|
|
|
'defines': [
|
|
|
|
'SK_FUZZ_LOGGING',
|
|
|
|
],
|
2016-07-21 16:41:13 +00:00
|
|
|
'sources': [
|
2016-08-02 21:28:26 +00:00
|
|
|
'<!@(python find.py "*.cpp" ../fuzz)',
|
2016-07-21 16:41:13 +00:00
|
|
|
'../tests/PathOpsDebug.cpp',
|
|
|
|
],
|
2016-01-15 14:19:53 +00:00
|
|
|
'dependencies': [
|
|
|
|
'flags.gyp:flags',
|
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
],
|
2016-01-21 17:25:32 +00:00
|
|
|
'include_dirs': [
|
2016-07-21 16:41:13 +00:00
|
|
|
'../include/private',
|
2016-01-21 17:25:32 +00:00
|
|
|
'../src/core',
|
2016-07-21 16:41:13 +00:00
|
|
|
'../src/pathops',
|
2016-01-21 17:25:32 +00:00
|
|
|
],
|
2016-01-13 20:57:57 +00:00
|
|
|
}],
|
|
|
|
}
|