blob: 27b4d8ac581301190c2f5fa7ed68b69f51d83ad7 [file] [log] [blame]
mtklein65e58242016-01-13 12:57:57 -08001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6{
7 'includes': [ 'apptype_console.gypi' ],
8 'targets': [{
9 'target_name': 'fuzz',
10 'type': 'executable',
kjlubick9fd07e52016-04-12 12:02:59 -070011 'defines': [
12 'SK_FUZZ_LOGGING',
13 ],
caryclarkb5dc4052016-07-21 09:41:13 -070014 'sources': [
mtkleinada5a442016-08-02 14:28:26 -070015 '<!@(python find.py "*.cpp" ../fuzz)',
caryclarkb5dc4052016-07-21 09:41:13 -070016 '../tests/PathOpsDebug.cpp',
17 ],
mtkleinf5e97822016-01-15 06:19:53 -080018 'dependencies': [
19 'flags.gyp:flags',
20 'skia_lib.gyp:skia_lib',
21 ],
mtklein26379ca2016-01-21 09:25:32 -080022 'include_dirs': [
caryclarkb5dc4052016-07-21 09:41:13 -070023 '../include/private',
mtklein26379ca2016-01-21 09:25:32 -080024 '../src/core',
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050025 '../src/gpu',
caryclarkb5dc4052016-07-21 09:41:13 -070026 '../src/pathops',
mtklein26379ca2016-01-21 09:25:32 -080027 ],
mtklein65e58242016-01-13 12:57:57 -080028 }],
29}