diff options
| author | Jaewoong Jung <jungjw@google.com> | 2019-08-13 14:11:33 -0700 |
|---|---|---|
| committer | Michael Bestas <mkbestas@lineageos.org> | 2019-12-11 19:03:32 +0200 |
| commit | e9b9ddc1ee5619502da7b7cffe20a4950d73e788 (patch) | |
| tree | 44f851a23afa96cd5ca4397401cf6404c5597504 /android | |
| parent | ba18ee4726de96c98183968173f1c83918a72a52 (diff) | |
| download | build_soong-e9b9ddc1ee5619502da7b7cffe20a4950d73e788.tar.gz build_soong-e9b9ddc1ee5619502da7b7cffe20a4950d73e788.tar.bz2 build_soong-e9b9ddc1ee5619502da7b7cffe20a4950d73e788.zip | |
Add arch variant support to android_app_import.
Bug: 128610294
Fixes: 138792623
Test: app_test.go
Change-Id: I47c80ec283ce58a0ce9b7d0af40844bd73e9d3f1
Diffstat (limited to 'android')
| -rw-r--r-- | android/arch.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/arch.go b/android/arch.go index 957a659c..6e8c4bdb 100644 --- a/android/arch.go +++ b/android/arch.go @@ -557,6 +557,10 @@ func newArch(name, multilib string) ArchType { return archType } +func ArchTypeList() []ArchType { + return append([]ArchType(nil), archTypeList...) +} + func (a ArchType) String() string { return a.Name } |
