diff options
author | 2024-05-27 17:25:52 +0900 | |
---|---|---|
committer | 2024-06-05 01:22:58 +0000 | |
commit | 9f26fcf88c875718afa1f0de17f352c1576b624e (patch) | |
tree | 4d409239ae3651fc21266fa8ef257407dd4e617e /rust/rust.go | |
parent | 67ca47524ed90d2cab9faeb661aaab59816b687c (diff) |
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
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 17 |
1 files changed, 0 insertions, 17 deletions
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 } |