Use single module for clang runtime libraries

The clang prebuilts now provide a single module with per-architecture
variants instead of a module per architecture.

Bug: 220019988
Test: m checkbuild
Change-Id: I39e2cf8ae14edf8510276dab38011afaef85822c
Merged-In: I39e2cf8ae14edf8510276dab38011afaef85822c
This commit is contained in:
Colin Cross
2022-02-10 11:41:18 -08:00
parent 2d295a2de2
commit 4c4c1be915
11 changed files with 32 additions and 119 deletions

View File

@@ -24,11 +24,7 @@ import (
var prepareForAsanTest = android.FixtureAddFile("asan/Android.bp", []byte(`
cc_library_shared {
name: "libclang_rt.asan-aarch64-android",
}
cc_library_shared {
name: "libclang_rt.asan-arm-android",
name: "libclang_rt.asan",
}
`))