blob: 15ebb8208b4980ee324ed332452a3664ea04f2b8 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.debug;
import com.android.tools.r8.TestRuntime;
import com.android.tools.r8.TestRuntime.DexRuntime;
import com.android.tools.r8.ToolHelper;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/** Base test configuration with DEX version of JDWP. */
public class DexDebugTestConfig extends DebugTestConfig {
private final DexRuntime runtime;
@Deprecated
public DexDebugTestConfig() {
this(Collections.emptyList());
}
@Deprecated
public DexDebugTestConfig(Path... paths) {
this(Arrays.asList(paths));
}
@Deprecated
public DexDebugTestConfig(List<Path> paths) {
this(new DexRuntime(ToolHelper.getDexVm()), paths);
}
public DexDebugTestConfig(TestRuntime.DexRuntime runtime, List<Path> paths) {
this.runtime = runtime;
addPaths(paths);
}
@Override
public TestRuntime getRuntime() {
return runtime;
}
}