Fix compilation with vtpm enabled

This snuck through because it's only compiled for chromeos. The feature
will be split out and enabled on upstream builds in https://crrev.com/c/3924741
to prevent failures like this in the future.

BUG=None
TEST=emerge-amd64-generic implicit-system crosvm

Change-Id: Id74c59a5a5a765bfbe5864ee9588ab9863b18bc7
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3929079
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Auto-Submit: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Dennis Kempin 2022-09-29 15:41:38 +00:00 committed by crosvm LUCI
parent 106ae7ada1
commit ee15178af7
2 changed files with 3 additions and 0 deletions

View file

@ -3,4 +3,6 @@
pub mod client {
pub mod org_chromium_userdataauth;
pub use org_chromium_userdataauth::*;
pub mod org_chromium_vtpm;
pub use org_chromium_vtpm::*;
}

View file

@ -7,3 +7,4 @@ pub mod auth_factor;
pub mod fido;
pub mod key;
pub mod rpc;
pub mod vtpm_interface;