7ef4b74e57
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4732 Change-Id: I144110bf66f67a28da7ad333173db43bddf9e8d0 Reviewed-on: https://skia-review.googlesource.com/4732 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
30 lines
709 B
Python
30 lines
709 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 "*.cpp" ../fuzz)',
|
|
'../tests/PathOpsDebug.cpp',
|
|
],
|
|
'dependencies': [
|
|
'flags.gyp:flags',
|
|
'skia_lib.gyp:skia_lib',
|
|
],
|
|
'include_dirs': [
|
|
'../include/private',
|
|
'../src/core',
|
|
'../src/gpu',
|
|
'../src/pathops',
|
|
],
|
|
}],
|
|
}
|