summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2018-09-27 15:06:19 -0700
committer Colin Cross <ccross@android.com> 2018-09-28 13:56:06 -0700
commit05518bc13b3cd31e6cb7158a41aa124b224c3bc4 (patch)
tree65dbf6c09827df7f23d973ef6419fea543580d52 /java/java.go
parentb051ab5cb54f8802807680a8fb24092b445a3ddb (diff)
soong_zip: Add tests
Add test that cover basic command line usage of soong_zip. -D is not covered yet as the implementation will be replaced with one that is also more easily testable in the next patch. Bug: 116751500 Test: zip_test.go Change-Id: I5a1bcee74ebc9cb3cf332c36f89bc12c0e807ad2
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go
index 0bd7857a0..7fd534446 100644
--- a/java/java.go
+++ b/java/java.go
@@ -95,6 +95,9 @@ type CompilerProperties struct {
// list of java libraries that will be compiled into the resulting jar
Static_libs []string `android:"arch_variant"`
+ // list of native libraries that will be provided in or alongside the resulting jar
+ Jni_libs []string `android:"arch_variant"`
+
// manifest file to be included in resulting jar
Manifest *string