Change soong parameter name disabled -> enabled

This looks cleaner when we need to enable windows builds for modules.

Change-Id: I61553e2124e08002b0bd9e35c1406c905718f2f7
This commit is contained in:
Dan Willemsen
2015-11-30 16:06:01 -08:00
parent 490fd49557
commit 0effe06597
2 changed files with 14 additions and 14 deletions

View File

@@ -694,7 +694,7 @@ func (c *CCBase) depsToPathsFromList(ctx common.AndroidModuleContext,
}
if a, ok := m.(CCModuleType); ok {
if a.Disabled() {
if !a.Enabled() {
// If a cc_library host+device module depends on a library that exists as both
// cc_library_shared and cc_library_host_shared, it will end up with two
// dependencies with the same name, one of which is marked disabled for each