aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/fuzz.gyp
blob: 4290ff5fb532447f7525ee8bd27861b14e093127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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',
        'sources': [ '<!@(python find.py ../fuzz "*.cpp")' ],
        'dependencies': [ 'skia_lib.gyp:skia_lib' ],
        'xcode_settings': {
            'DEAD_CODE_STRIPPING': 'YES',
        },
    }],
}