Home | History | Annotate | Download | only in ndk

Lines Matching refs:PROJECT

3 # Copyright (C) 2010 The Android Open Source Project
24 # need to launch ndk-gdb from your application project directory
116 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 | tail -1
124 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 APP_ABI=$2 | tail -1
130 $AWK_CMD -f $AWK_SCRIPTS/$1 $PROJECT/$MANIFEST
158 # ./ndk-gdb --project=/path/to/project
232 --project=*)
283 echo " --project=<path> Specify application project path"
284 echo " -p <path> Same as --project=<path>"
424 # Find the root of the application project.
426 PROJECT=$OPTION_PROJECT
427 log "Using specified project path: $PROJECT"
428 if [ ! -d "$PROJECT" ] ; then
429 echo "ERROR: Your --project option does not point to a directory!"
432 if [ ! -f "$PROJECT/$MANIFEST" ] ; then
433 echo "ERROR: Your --project does not point to an Android project path!"
438 # Assume we are in the project directory
440 PROJECT=.
442 PROJECT=
446 PROJECT="$CURDIR"
451 if [ -z "$PROJECT" ] ; then
452 echo "ERROR: Launch this script from an application project directory, or use --project=<path>."
456 log "Using auto-detected project path: $PROJECT"
463 echo "ERROR: Could not extract package name from $PROJECT/$MANIFEST."
556 if [ -f $PROJECT/libs/$COMPAT_ABI/gdbserver ] ; then
572 if [ ! -f $PROJECT/libs/$COMPAT_ABI/gdbserver ] ; then
573 echo "ERROR: Could not find gdbserver binary under $PROJECT/libs/$COMPAT_ABI"