aboutsummaryrefslogtreecommitdiff
path: root/build/cvd-host-package.go
diff options
context:
space:
mode:
Diffstat (limited to 'build/cvd-host-package.go')
-rw-r--r--build/cvd-host-package.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/cvd-host-package.go b/build/cvd-host-package.go
index cf66c0e99..596ce41d0 100644
--- a/build/cvd-host-package.go
+++ b/build/cvd-host-package.go
@@ -68,6 +68,13 @@ func (c *cvdHostPackage) DepsMutator(ctx android.BottomUpMutatorContext) {
}
}
+ for _, dep := range strings.Split(
+ ctx.Config().VendorConfig("cvd").String("binary"), " ") {
+ if ctx.OtherModuleExists(dep) {
+ ctx.AddVariationDependencies(ctx.Target().Variations(), cvdHostPackageDependencyTag, dep)
+ }
+ }
+
// If cvd_custom_action_config is set, include custom action servers in the
// host package as specified by cvd_custom_action_servers.
customActionConfig := ctx.Config().VendorConfig("cvd").String("custom_action_config")