1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 223684

Removes the dependency by moving IGDBLaunchConfigurationContants from the org.eclipse.dd.gdb.launch plugin to org.eclipse.dd.gdb
This commit is contained in:
Marc Khouzam 2008-03-25 17:46:32 +00:00
parent 508a4a90b3
commit 42eb4e884e
5 changed files with 21 additions and 8 deletions

View file

@ -34,6 +34,7 @@ import org.eclipse.dd.dsf.concurrent.ThreadSafe;
import org.eclipse.dd.dsf.debug.model.DsfMemoryBlockRetrieval;
import org.eclipse.dd.dsf.debug.service.IMemory.IMemoryDMContext;
import org.eclipse.dd.dsf.service.DsfServicesTracker;
import org.eclipse.dd.gdb.IGDBLaunchConfigurationConstants;
import org.eclipse.dd.gdb.launch.internal.GdbLaunchPlugin;
import org.eclipse.dd.gdb.service.command.GDBControl;
import org.eclipse.dd.gdb.service.command.GDBControl.SessionType;

View file

@ -1,7 +0,0 @@
package org.eclipse.dd.gdb.launch.launching;
public class IGDBLaunchConfigurationConstants {
public static final String DEBUGGER_MODE_REMOTE = "remote";
}

View file

@ -21,6 +21,7 @@ import org.eclipse.dd.dsf.concurrent.RequestMonitor;
import org.eclipse.dd.dsf.concurrent.Sequence;
import org.eclipse.dd.dsf.debug.service.StepQueueManager;
import org.eclipse.dd.dsf.service.DsfSession;
import org.eclipse.dd.gdb.IGDBLaunchConfigurationConstants;
import org.eclipse.dd.gdb.service.GDBRunControl;
import org.eclipse.dd.gdb.service.command.GDBControl;
import org.eclipse.dd.gdb.service.command.GDBControl.SessionType;

View file

@ -14,6 +14,7 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.cdt.debug.core
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Export-Package: org.eclipse.dd.gdb.breakpoints,
Export-Package: org.eclipse.dd.gdb,
org.eclipse.dd.gdb.breakpoints,
org.eclipse.dd.gdb.service,
org.eclipse.dd.gdb.service.command

View file

@ -0,0 +1,17 @@
/*******************************************************************************
* Copyright (c) 2008 Ericsson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ericsson - initial API and implementation
*******************************************************************************/
package org.eclipse.dd.gdb;
public class IGDBLaunchConfigurationConstants {
public static final String DEBUGGER_MODE_REMOTE = "remote"; //$NON-NLS-1$
}