diff options
author | Paul Duffin <paulduffin@google.com> | 2021-05-13 22:34:45 +0100 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2021-05-14 00:39:24 +0100 |
commit | f4600f6e6af978fe162dcdc0ade8651c050f9cce (patch) | |
tree | 1390630bd5d68e0d1755d5d8fb0b0cd40ba3983a /java/bootclasspath_fragment_test.go | |
parent | 0589914135d46895d40d55ff6914067b7bfd36d7 (diff) |
Disallow shared libraries in bootclasspath_fragment contents
Bug: 177892522
Test: m nothing
Change-Id: I78c8ef8664ec1eb0fe3456a2de2cb956162ca0da
Diffstat (limited to 'java/bootclasspath_fragment_test.go')
-rw-r--r-- | java/bootclasspath_fragment_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/bootclasspath_fragment_test.go b/java/bootclasspath_fragment_test.go index 32ed7ea81..a47e12748 100644 --- a/java/bootclasspath_fragment_test.go +++ b/java/bootclasspath_fragment_test.go @@ -231,7 +231,7 @@ func TestBootclasspathFragment_StubLibs(t *testing.T) { java_sdk_library { name: "mysdklibrary", srcs: ["a.java"], - compile_dex: true, + shared_library: false, public: {enabled: true}, system: {enabled: true}, } @@ -239,7 +239,7 @@ func TestBootclasspathFragment_StubLibs(t *testing.T) { java_sdk_library { name: "mycoreplatform", srcs: ["a.java"], - compile_dex: true, + shared_library: false, public: {enabled: true}, } `) |