diff options
author | 2021-12-21 12:48:27 +0000 | |
---|---|---|
committer | 2021-12-21 12:51:36 +0000 | |
commit | d806dd4f1d53dc64cbfc96ecda07a4b223adfbd1 (patch) | |
tree | d292a2b5a2a944102da3fdacb5d69f78f64ec1e6 | |
parent | 430059b4226d3e7177a6717869f21ff382e8a34a (diff) |
Update dexpreopt_check to check all system server jars.
After this change, standalone system server jars will also be checked.
Bug: 203198541
Test: m nothing
Change-Id: I80f5efe9c7f0386af175d7a37398ffa000d6ba59
-rw-r--r-- | java/dexpreopt_check.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/dexpreopt_check.go b/java/dexpreopt_check.go index 149cbb758..83c088cd4 100644 --- a/java/dexpreopt_check.go +++ b/java/dexpreopt_check.go @@ -72,8 +72,7 @@ func (m *dexpreoptSystemserverCheck) GenerateAndroidBuildActions(ctx android.Mod return } - // TODO(b/203198541): Check all system server jars. - systemServerJars := global.AllSystemServerClasspathJars(ctx) + systemServerJars := global.AllSystemServerJars(ctx) for _, jar := range systemServerJars.CopyOfJars() { dexLocation := dexpreopt.GetSystemServerDexLocation(ctx, global, jar) odexLocation := dexpreopt.ToOdexPath(dexLocation, targets[0].Arch.ArchType) |