Rename no_standard_libraries to no_standard_libs

For consistency with libs and static_libs.  And make it a *bool
so that it can be overriden when used in java_defaults modules.

Test: java_test.go
Change-Id: If0eaf5d5571dc6e565056d273b0addd960d6b33f
This commit is contained in:
Colin Cross
2017-08-29 16:02:06 -07:00
parent 227d436943
commit 76b5f0ca31
4 changed files with 7 additions and 5 deletions

View File

@@ -24,6 +24,7 @@ import (
"strings"
"github.com/google/blueprint"
"github.com/google/blueprint/proptools"
"android/soong/android"
"android/soong/genrule"
@@ -76,7 +77,7 @@ type CompilerProperties struct {
// don't build against the default libraries (legacy-test, core-junit,
// ext, and framework for device targets)
No_standard_libraries bool
No_standard_libs *bool
// list of module-specific flags that will be used for javac compiles
Javacflags []string `android:"arch_variant"`
@@ -174,7 +175,7 @@ var (
)
func (j *Module) deps(ctx android.BottomUpMutatorContext) {
if !j.properties.No_standard_libraries {
if !proptools.Bool(j.properties.No_standard_libs) {
if ctx.Device() {
switch j.deviceProperties.Sdk_version {
case "":