Merge "Allow other module types in androidx"

This commit is contained in:
Treehugger Robot
2019-07-22 21:16:48 +00:00
committed by Gerrit Code Review
2 changed files with 35 additions and 4 deletions

View File

@@ -52,8 +52,6 @@ func supportLibrariesMakeVarsProvider(ctx android.MakeVarsContext) {
supportAars = append(supportAars, name)
case *Library, *Import:
supportJars = append(supportJars, name)
default:
ctx.ModuleErrorf(module, "unknown module type %t", module)
}
})