Make host targets use non-repackaged targets

A host build target was depending on a target that is intended for
on-device, repackaged (com.android.) use. This switches to using the
unbundled target instead.

Test: Build
Bug: 111055375
Bug: 111734251
Change-Id: Ie81dd7257a14756fc21fa6f956175e5bd2ff80c1
This commit is contained in:
Neil Fuller 2018-07-12 19:47:21 +01:00
parent 901d05469e
commit 35f744966b
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ java_library_host {
manifest: "SignApk.mf",
static_libs: [
"apksig",
"bouncycastle",
"bouncycastle-bcpkix",
"bouncycastle-unbundled",
"bouncycastle-bcpkix-unbundled",
"conscrypt",
],

View File

@ -21,7 +21,7 @@ java_library_host {
srcs: ["SignTos.java"],
manifest: "SignTos.mf",
static_libs: [
"bouncycastle",
"bouncycastle-bcpkix",
"bouncycastle-unbundled",
"bouncycastle-bcpkix-unbundled",
],
}