diff options
author | Colin Cross <ccross@android.com> | 2017-08-29 16:02:06 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-08-31 13:48:52 -0700 |
commit | 76b5f0ca31ed182ed9cee26d49aafbb862093b64 (patch) | |
tree | 4ff0f6c7133400f2080c6d85e70c9a1937e07db8 /java/java_test.go | |
parent | 227d4369431f630e00dc976853e541c9ad6c4054 (diff) |
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
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java_test.go b/java/java_test.go index d73ae0bdd..6d9445b6d 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -69,7 +69,7 @@ func testJava(t *testing.T, bp string) *android.TestContext { bp += fmt.Sprintf(` java_library { name: "%s", - no_standard_libraries: true, + no_standard_libs: true, } `, extra) } |