blob: 72907805a5a24cca4e169238d58f2acfc27bea1c [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 ],
mtklein65e58242016-01-13 12:57:57 -080014 'sources': [ '<!@(python find.py ../fuzz "*.cpp")' ],
mtkleinf5e97822016-01-15 06:19:53 -080015 'dependencies': [
16 'flags.gyp:flags',
17 'skia_lib.gyp:skia_lib',
18 ],
mtklein26379ca2016-01-21 09:25:32 -080019 'include_dirs': [
20 '../src/core',
21 ],
mtklein65e58242016-01-13 12:57:57 -080022 }],
23}