diff options
author | 2021-07-20 13:17:15 -0700 | |
---|---|---|
committer | 2021-07-21 20:37:46 -0700 | |
commit | cb0ac95bde896fa2aa59193a37ceb580758c322c (patch) | |
tree | fab2e627cba7a1bf408088179af01e48397b3fd5 /sdk/update.go | |
parent | 34c32fabea769eb99f531cc7b3ebffc3dc6576eb (diff) |
Remove Fuchsia support from Soong
Bug: 194215932
Test: m checkbuild
Change-Id: Id7d3964d9417f8b0938af9b168bb4c00cebe9390
Diffstat (limited to 'sdk/update.go')
-rw-r--r-- | sdk/update.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sdk/update.go b/sdk/update.go index 3ec1bfaf4..1cd8f135a 100644 --- a/sdk/update.go +++ b/sdk/update.go @@ -22,6 +22,7 @@ import ( "android/soong/apex" "android/soong/cc" + "github.com/google/blueprint" "github.com/google/blueprint/proptools" @@ -1774,7 +1775,7 @@ func (s *sdk) getPossibleOsTypes() []android.OsType { var osTypes []android.OsType for _, osType := range android.OsTypeList() { if s.DeviceSupported() { - if osType.Class == android.Device && osType != android.Fuchsia { + if osType.Class == android.Device { osTypes = append(osTypes, osType) } } |