Encode default enabled state in OsType

am: 0a37a2a2b8

Change-Id: I8377ced8a03bdd2f1dec123f59aab7d19ed2beb4
This commit is contained in:
Dan Willemsen 2016-11-18 03:12:59 +00:00 committed by android-build-merger
commit 7dbdaa7fa5
2 changed files with 10 additions and 6 deletions

View file

@ -192,10 +192,10 @@ var (
osTypeList []OsType
NoOsType OsType
Linux = NewOsType("linux", Host)
Darwin = NewOsType("darwin", Host)
Windows = NewOsType("windows", HostCross)
Android = NewOsType("android", Device)
Linux = NewOsType("linux", Host, false)
Darwin = NewOsType("darwin", Host, false)
Windows = NewOsType("windows", HostCross, true)
Android = NewOsType("android", Device, false)
osArchTypeMap = map[OsType][]ArchType{
Linux: []ArchType{X86, X86_64},
@ -208,6 +208,8 @@ var (
type OsType struct {
Name, Field string
Class OsClass
DefaultDisabled bool
}
type OsClass int
@ -222,11 +224,13 @@ func (os OsType) String() string {
return os.Name
}
func NewOsType(name string, class OsClass) OsType {
func NewOsType(name string, class OsClass, defDisabled bool) OsType {
os := OsType{
Name: name,
Field: strings.Title(name),
Class: class,
DefaultDisabled: defDisabled,
}
osTypeList = append(osTypeList, os)
return os

View file

@ -355,7 +355,7 @@ func (a *ModuleBase) DeviceSupported() bool {
func (a *ModuleBase) Enabled() bool {
if a.commonProperties.Enabled == nil {
return a.Os().Class != HostCross
return !a.Os().DefaultDisabled
}
return *a.commonProperties.Enabled
}