Revert^2 "Generate app profiles even if dexpreopt is disabled."
Revert submission 2580631-revert-2574032-XXTWCJDTDQ Reason for revert: Fixed build breakages Reverted changes: /q/submissionid:2580631-revert-2574032-XXTWCJDTDQ Bug: 280440941 Test: lunch aosp_cf_riscv64_minidroid-userdebug && m UNSAFE_DISABLE_HIDDENAPI_FLAGS=true dist Test: Disable dex2oat on host (to simulate macOS) and build Change-Id: I6090b4b74cedb6d129fcbeef58d075c8ccdcc4e2
This commit is contained in:
@@ -813,6 +813,20 @@ func normalizePathRelativeToTop(path Path) Path {
|
||||
return path.RelativeToTop()
|
||||
}
|
||||
|
||||
func allOutputs(p BuildParams) []string {
|
||||
outputs := append(WritablePaths(nil), p.Outputs...)
|
||||
outputs = append(outputs, p.ImplicitOutputs...)
|
||||
if p.Output != nil {
|
||||
outputs = append(outputs, p.Output)
|
||||
}
|
||||
return outputs.Strings()
|
||||
}
|
||||
|
||||
// AllOutputs returns all 'BuildParams.Output's and 'BuildParams.Outputs's in their full path string forms.
|
||||
func (p TestingBuildParams) AllOutputs() []string {
|
||||
return allOutputs(p.BuildParams)
|
||||
}
|
||||
|
||||
// baseTestingComponent provides functionality common to both TestingModule and TestingSingleton.
|
||||
type baseTestingComponent struct {
|
||||
config Config
|
||||
@@ -954,12 +968,7 @@ func (b baseTestingComponent) buildParamsFromOutput(file string) TestingBuildPar
|
||||
func (b baseTestingComponent) allOutputs() []string {
|
||||
var outputFullPaths []string
|
||||
for _, p := range b.provider.BuildParamsForTests() {
|
||||
outputs := append(WritablePaths(nil), p.Outputs...)
|
||||
outputs = append(outputs, p.ImplicitOutputs...)
|
||||
if p.Output != nil {
|
||||
outputs = append(outputs, p.Output)
|
||||
}
|
||||
outputFullPaths = append(outputFullPaths, outputs.Strings()...)
|
||||
outputFullPaths = append(outputFullPaths, allOutputs(p)...)
|
||||
}
|
||||
return outputFullPaths
|
||||
}
|
||||
|
Reference in New Issue
Block a user