blob: 4f9e2cd74b4f1f8972942018bee60eb1dad5b919 [file] [log] [blame]
# Copyright 2019 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.
group("devmgr") {
# Everything else is in data_deps of devmgr.
# TODO: consider moving devmgr/* back to this dir
deps = [
"devmgr",
]
}
# Drivers depend on this (see $standard_fuchsia_user_configs).
# It just gets the standard devhost binary into the BOOTFS image.
group("driver_config") {
data_deps = [
"devhost",
]
}
# Variants can remove that standard "driver_config" from $configs and
# instead add a specific "driver_config.variant" defined below.
variant_suffixes = [ toolchain.variant_suffix ]
foreach(other, toolchain.other_variants) {
variant_suffixes += [ other.suffix ]
}
foreach(variant, variant_suffixes) {
group("driver_config$variant") {
data_deps = [
"devhost:devhost$variant(${toolchain.label})",
]
}
}