From cde1b5416f03800641c88efe3cb1684c787e3fa8 Mon Sep 17 00:00:00 2001 From: ameron Lutes Date: Tue, 7 Dec 2021 19:56:03 +0000 Subject: [PATCH] crosvm: Rename libcrosvm_control to crosvm_control The current inclusion of the 'lib' prefix is redundant and results in 'liblibcrosvm_control' once built. These changes remove the 'lib' prefix from the source files. BUG=b:188858559 TEST=cros_run_unit_tests --board ${board} --packages chromeos-base/crosvm Change-Id: Ic1bcdce9aa5d879f5867232ffec60f40fe57d3a1 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3321731 Reviewed-by: Hikaru Nishida Reviewed-by: Chirantan Ekbote Tested-by: kokoro Reviewed-by: Christian Blichmann Commit-Queue: Kameron Lutes --- Cargo.toml | 2 +- {libcrosvm_control => crosvm_control}/Cargo.toml | 2 +- {libcrosvm_control => crosvm_control}/src/lib.rs | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {libcrosvm_control => crosvm_control}/Cargo.toml (89%) rename {libcrosvm_control => crosvm_control}/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 877c68e182..f5ba63d1f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ members = [ "kernel_loader", "kvm", "kvm_sys", - "libcrosvm_control", + "crosvm_control", "libvda", "linux_input_sys", "net_sys", diff --git a/libcrosvm_control/Cargo.toml b/crosvm_control/Cargo.toml similarity index 89% rename from libcrosvm_control/Cargo.toml rename to crosvm_control/Cargo.toml index 262736fac9..4554344fb4 100644 --- a/libcrosvm_control/Cargo.toml +++ b/crosvm_control/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "libcrosvm_control" +name = "crosvm_control" version = "0.1.0" authors = ["The Chromium OS Authors"] edition = "2018" diff --git a/libcrosvm_control/src/lib.rs b/crosvm_control/src/lib.rs similarity index 100% rename from libcrosvm_control/src/lib.rs rename to crosvm_control/src/lib.rs