Merge "Remove Fuchsia support from Soong"

This commit is contained in:
Colin Cross
2021-07-23 14:54:49 +00:00
committed by Gerrit Code Review
18 changed files with 10 additions and 376 deletions

View File

@@ -325,7 +325,6 @@ type BaseModuleContext interface {
Host() bool
Device() bool
Darwin() bool
Fuchsia() bool
Windows() bool
Debug() bool
PrimaryArch() bool
@@ -2569,10 +2568,6 @@ func (b *baseModuleContext) Darwin() bool {
return b.os == Darwin
}
func (b *baseModuleContext) Fuchsia() bool {
return b.os == Fuchsia
}
func (b *baseModuleContext) Windows() bool {
return b.os == Windows
}