mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 12:35:26 +00:00
The feature was never finished (crbug.com/911799), but adds a build-time dependency on the trunks proto in platform2. BUG=b:193267897 TEST=cargo build with and without tpm feature Change-Id: I7299ba0779bb04ebca6284cfd11873e99500c993 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3043491 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
13 lines
355 B
Rust
13 lines
355 B
Rust
// Copyright 2019 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
mod generated {
|
|
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
|
|
}
|
|
|
|
#[cfg(feature = "plugin")]
|
|
pub mod plugin;
|
|
|
|
#[cfg(feature = "composite-disk")]
|
|
pub use generated::cdisk_spec;
|