skia2/gyp/fuzz.gyp
caryclark b5dc4051f7 add pathops debugging to fuzz
Add optional debugging routines for use in gdb.

R=kjlubick
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2171773002

Review-Url: https://codereview.chromium.org/2171773002
2016-07-21 09:41:14 -07:00

29 lines
683 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': 'fuzz',
'type': 'executable',
'defines': [
'SK_FUZZ_LOGGING',
],
'sources': [
'<!@(python find.py ../fuzz "*.cpp")',
'../tests/PathOpsDebug.cpp',
],
'dependencies': [
'flags.gyp:flags',
'skia_lib.gyp:skia_lib',
],
'include_dirs': [
'../include/private',
'../src/core',
'../src/pathops',
],
}],
}