aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/fuzz.gyp
blob: 27b4d8ac581301190c2f5fa7ed68b69f51d83ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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',
        ],
    }],
}