mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 1 | # 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', |
kjlubick | 9fd07e5 | 2016-04-12 12:02:59 -0700 | [diff] [blame] | 11 | 'defines': [ |
| 12 | 'SK_FUZZ_LOGGING', |
| 13 | ], |
caryclark | b5dc405 | 2016-07-21 09:41:13 -0700 | [diff] [blame] | 14 | 'sources': [ |
mtklein | ada5a44 | 2016-08-02 14:28:26 -0700 | [diff] [blame] | 15 | '<!@(python find.py "*.cpp" ../fuzz)', |
caryclark | b5dc405 | 2016-07-21 09:41:13 -0700 | [diff] [blame] | 16 | '../tests/PathOpsDebug.cpp', |
| 17 | ], |
mtklein | f5e9782 | 2016-01-15 06:19:53 -0800 | [diff] [blame] | 18 | 'dependencies': [ |
| 19 | 'flags.gyp:flags', |
| 20 | 'skia_lib.gyp:skia_lib', |
| 21 | ], |
mtklein | 26379ca | 2016-01-21 09:25:32 -0800 | [diff] [blame] | 22 | 'include_dirs': [ |
caryclark | b5dc405 | 2016-07-21 09:41:13 -0700 | [diff] [blame] | 23 | '../include/private', |
mtklein | 26379ca | 2016-01-21 09:25:32 -0800 | [diff] [blame] | 24 | '../src/core', |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 25 | '../src/gpu', |
caryclark | b5dc405 | 2016-07-21 09:41:13 -0700 | [diff] [blame] | 26 | '../src/pathops', |
mtklein | 26379ca | 2016-01-21 09:25:32 -0800 | [diff] [blame] | 27 | ], |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 28 | }], |
| 29 | } |