blob: b06d43beee0ae4015f7df13c062d44f0da79f8f0 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package config
// List of bindings that are on the deny list by default.
// Add them to an allowlist to enable.
var DefaultBindingsDenylist = []string{"reference"}
// A config passed to generators.
type GeneratorConfig struct {
// RustBenchmarksFidlLibrary is the name for the fidl library used in rust benchmarks.
RustBenchmarksFidlLibrary string
// CppBenchmarksFidlLibrary is the name for the fidl library used in cpp benchmarks.
CppBenchmarksFidlLibrary string
// FuzzerCorpusHostDir is the directory for generated conformance test fuzzer corpus.
FuzzerCorpusHostDir string
// FuzzerCorpusPackageDataDir is the directory to which corpus files are mapped in their fuchsia
// package's data directory.
FuzzerCorpusPackageDataDir string
}