blob: 99accde549cf7c5c0771c98792a1306353c7cc98 [file] [log] [blame]
// Copyright 2021 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.
pub mod assembly_config;
/// Configuration that's provided to Assembly by the Board
pub mod board_config;
pub mod common;
pub mod developer_overrides;
pub mod image_assembly_config;
pub mod merge;
pub mod platform_config;
pub mod product_config;
pub use assembly_config::AssemblyConfig;
pub use board_config::{BoardInformation, BoardInputBundle, BoardProvidedConfig};
pub use common::{
DriverDetails, FeatureControl, PackageDetails, PackageSet, PackagedDriverDetails,
};
pub use image_assembly_config::{BoardDriverArguments, ImageAssemblyConfig};
pub use merge::try_merge_into;
pub use platform_config::{
example_config::ExampleConfig,
icu_config::{ICUConfig, Revision},
intl_config::IntlConfig,
BuildType, FeatureSupportLevel,
};