mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
6c6966ecfc
Adds a build time compilation check for the generated crosvm_control.h BUG=b:271789981 TEST=CQ, apply crrev/4237140 and observe build failure due to C compile error Change-Id: I57867894a975aa0a48f989051bb4243bf97f57e8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4333206 Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Kameron Lutes <kalutes@chromium.org> Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org>
19 lines
327 B
TOML
19 lines
327 B
TOML
[package]
|
|
name = "crosvm_control"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
vm_control = { path = "../vm_control" }
|
|
libc = "0.2.65"
|
|
|
|
[build-dependencies]
|
|
anyhow = "*"
|
|
cbindgen = "0.24"
|
|
cc = "*"
|
|
tempfile = "*"
|