diff options
author | 2020-06-03 14:57:22 +0100 | |
---|---|---|
committer | 2020-06-04 17:37:42 +0100 | |
commit | d4bcea4e24967c929946190151612ace21c71ac1 (patch) | |
tree | 88b320b6969358e41f35f2a8e5f7c723a0966c98 /java/dexpreopt.go | |
parent | 5539e7b568c19dc6d5720f49599f9832cdeee8e1 (diff) |
Refactor library path representation in dexpreopt.
This is a preliminary CL before fixing on-device paths to DEX jars.
It groups together the inormation about on-host build paths and
on-device install paths to library DEX jars.
This CL changes the structure of module dexpreopt.config files
generated by the build system. Aside of that, no functional changes.
Test: lunch aosp_cf_x86_phone-userdebug && m
Change-Id: I059654be7670f2ba66248d9c49b9694a0591f9c1
Diffstat (limited to 'java/dexpreopt.go')
-rw-r--r-- | java/dexpreopt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/dexpreopt.go b/java/dexpreopt.go index 4725b0781..2911fd9b9 100644 --- a/java/dexpreopt.go +++ b/java/dexpreopt.go @@ -37,7 +37,7 @@ type dexpreopter struct { usesLibs []string optionalUsesLibs []string enforceUsesLibs bool - libraryPaths map[string]android.Path + libraryPaths dexpreopt.LibraryPaths builtInstalled string } |