From 9f26fcf88c875718afa1f0de17f352c1576b624e Mon Sep 17 00:00:00 2001 From: Kiyoung Kim Date: Mon, 27 May 2024 17:25:52 +0900 Subject: Remove VNDK related code from Soong As VNDK definition is fully removed from Android.bp, VNDK related code can be removed from Soong. This change removes VNDK related code except VNDK prebuilt which is required to build former versions of VNDK APEX with prebuilts. Bug: 330100430 Test: AOSP CF build succeeded Ignore-AOSP-First: Resolve Conflict Change-Id: Id9c8993343221c8464c97296bde0ff40b14b9b0b --- rust/rust.go | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'rust/rust.go') diff --git a/rust/rust.go b/rust/rust.go index 5790dd6e4..7cd9df4c7 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -345,19 +345,6 @@ func (mod *Module) SubName() string { return mod.Properties.SubName } -func (mod *Module) IsVndk() bool { - // TODO(b/165791368) - return false -} - -func (mod *Module) IsVndkExt() bool { - return false -} - -func (mod *Module) IsVndkSp() bool { - return false -} - func (mod *Module) IsVndkPrebuiltLibrary() bool { // Rust modules do not provide VNDK prebuilts return false @@ -380,10 +367,6 @@ func (c *Module) IsLlndk() bool { return false } -func (c *Module) IsLlndkPublic() bool { - return false -} - func (mod *Module) KernelHeadersDecorator() bool { return false } -- cgit v1.2.3-59-g8ed1b