mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-29 03:00:19 +00:00
1dab58a2cf
This search/replace updates all copyright notices to drop the "All rights reserved", Use "ChromiumOS" instead of "Chromium OS" and drops the trailing dots. This fulfills the request from legal and unifies our notices. ./tools/health-check has been updated to only accept this style. BUG=b:246579983 TEST=./tools/health-check Change-Id: I87a80701dc651f1baf4820e5cc42469d7c5f5bf7 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3894243 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com>
54 lines
1.6 KiB
Rust
54 lines
1.6 KiB
Rust
// Copyright 2022 The ChromiumOS Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
use anyhow::Context;
|
|
use anyhow::Result;
|
|
use cbindgen::Config;
|
|
use cbindgen::Language;
|
|
|
|
static COPYRIGHT_CLAUSE: &str = "// Copyright 2022 The ChromiumOS Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.";
|
|
|
|
static AUTOGENERATED_DISCLAIMER: &str =
|
|
"/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */";
|
|
|
|
static INCLUDE_GUARD: &str = "CROSVM_CONTROL_H_";
|
|
|
|
fn main() -> Result<()> {
|
|
// Skip building dependencies when generating documents.
|
|
if std::env::var("CARGO_DOC").is_ok() {
|
|
return Ok(());
|
|
}
|
|
|
|
let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
|
|
|
|
let target_dir = env::var("OUT_DIR").context("failed to get OUT_DIR")?;
|
|
let output_file = PathBuf::from(target_dir)
|
|
.join("crosvm_control.h")
|
|
.display()
|
|
.to_string();
|
|
|
|
let config = Config {
|
|
language: Language::C,
|
|
cpp_compat: true,
|
|
header: Some(String::from(COPYRIGHT_CLAUSE)),
|
|
include_guard: Some(String::from(INCLUDE_GUARD)),
|
|
autogen_warning: Some(String::from(AUTOGENERATED_DISCLAIMER)),
|
|
include_version: true,
|
|
..Default::default()
|
|
};
|
|
|
|
cbindgen::Builder::new()
|
|
.with_crate(crate_dir)
|
|
.with_config(config)
|
|
.generate()
|
|
.context("Unable to generate bindings")?
|
|
.write_to_file(&output_file);
|
|
|
|
Ok(())
|
|
}
|