diff options
author | 2020-08-14 17:32:16 +0100 | |
---|---|---|
committer | 2020-08-19 13:51:21 +0100 | |
commit | 31e444e101909ab48bd3ca71eb1d9c79519a3ebb (patch) | |
tree | 7a4435d965bfa5769365723def460325638f3ced /java/device_host_converter.go | |
parent | 52cefc00f70d8760acfbaaabb514ffc1ab5b73d0 (diff) |
Collect paths to transitive SDK Java library dependencies.
Previously only the names were collected, and later used in the
manifest_fixer to add missing <uses-library> entries to the manifest.
Now we also need to collect build-time and on-device paths, to be used
in class loader context for dexpreopt. This commit only collects paths,
but does not pass them to dexpreopt yet.
Test: lunch aosp_cf_x86_phone-userdebug && m
Bug: 132357300
Change-Id: I34b229ee68f16ba215ba03770feadb4d890ec2bf
Diffstat (limited to 'java/device_host_converter.go')
-rw-r--r-- | java/device_host_converter.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/device_host_converter.go b/java/device_host_converter.go index 9191a8321..40a2280d9 100644 --- a/java/device_host_converter.go +++ b/java/device_host_converter.go @@ -19,6 +19,7 @@ import ( "io" "android/soong/android" + "android/soong/dexpreopt" ) type DeviceHostConverter struct { @@ -162,7 +163,7 @@ func (d *DeviceHostConverter) AidlIncludeDirs() android.Paths { return nil } -func (d *DeviceHostConverter) ExportedSdkLibs() []string { +func (d *DeviceHostConverter) ExportedSdkLibs() dexpreopt.LibraryPaths { return nil } |