gecko-dev/tools/fuzzing/moz.build
Jesse Schwartzentruber 146562d993 Bug 1581158 - Add fuzzing target for rkv r=froydnj
Differential Revision: https://phabricator.services.mozilla.com/D45891

--HG--
rename : tools/fuzzing/moz.build => tools/fuzzing/rust/moz.build
extra : moz-landing-system : lando
2019-09-20 21:27:35 +00:00

30 lines
624 B
Python

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += [
'interface',
'registry',
]
if not CONFIG['JS_STANDALONE']:
DIRS += [
'common',
'faulty',
'messagemanager',
'shmem',
'ipc',
]
if not CONFIG['JS_STANDALONE'] and CONFIG['FUZZING_INTERFACES']:
DIRS += [
'rust',
]
if CONFIG['LIBFUZZER']:
DIRS += [
'libfuzzer',
]