aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/NdkLaunchConstants.java
blob: ff70b2e1f25a4ee08c0f5d3f5992084a8c69abb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.eclipse.org/org/documents/epl-v10.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.ide.eclipse.ndk.internal.launch;

import com.android.ide.eclipse.ndk.internal.Activator;
import com.android.ide.eclipse.ndk.internal.NdkVariables;

public class NdkLaunchConstants {
    private static final String PREFIX = Activator.PLUGIN_ID + ".ndklaunch.";   //$NON-NLS-1$

    public static final String ATTR_NDK_GDB = PREFIX + "gdb";                   //$NON-NLS-1$
    public static final String ATTR_NDK_GDBINIT = PREFIX + "gdbinit";           //$NON-NLS-1$
    public static final String ATTR_NDK_SOLIB = PREFIX + "solib";               //$NON-NLS-1$

    public static final String DEFAULT_GDB_PORT = "5039";                       //$NON-NLS-1$
    public static final String DEFAULT_GDB = getVar(NdkVariables.NDK_GDB);
    public static final String DEFAULT_GDBINIT = "";                            //$NON-NLS-1$
    public static final String DEFAULT_PROGRAM =
            String.format("%1$s/obj/local/%2$s/app_process",                    //$NON-NLS-1$
                    getVar(NdkVariables.NDK_PROJECT),
                    getVar(NdkVariables.NDK_COMPAT_ABI));
    public static final String DEFAULT_SOLIB_PATH =
            String.format("%1$s/obj/local/%2$s/",                               //$NON-NLS-1$
                    getVar(NdkVariables.NDK_PROJECT),
                    getVar(NdkVariables.NDK_COMPAT_ABI));

    private static String getVar(String varName) {
        return "${" + varName + '}';                                            //$NON-NLS-1$
    }
}