Lines Matching refs:PROJECT
3 # Copyright (C) 2010 The Android Open Source Project
24 # need to launch ndk-gdb from your application project directory
75 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1
83 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 APP_ABI=$2
89 $AWK_CMD -f $AWK_SCRIPTS/$1 $PROJECT/$MANIFEST
117 # ./ndk-gdb --project=/path/to/project
189 --project=*)
240 echo " --project=<path> Specify application project path"
241 echo " -p <path> Same as --project=<path>"
358 # Find the root of the application project.
360 PROJECT=$OPTION_PROJECT
361 log "Using specified project path: $PROJECT"
362 if [ ! -d "$PROJECT" ] ; then
363 echo "ERROR: Your --project option does not point to a directory!"
366 if [ ! -f "$PROJECT/$MANIFEST" ] ; then
367 echo "ERROR: Your --project does not point to an Android project path!"
372 # Assume we are in the project directory
374 PROJECT=.
376 PROJECT=
380 PROJECT="$CURDIR"
385 if [ -z "$PROJECT" ] ; then
386 echo "ERROR: Launch this script from an application project directory, or use --project=<path>."
390 log "Using auto-detected project path: $PROJECT"
397 echo "ERROR: Could not extract package name from $PROJECT/$MANIFEST."
482 if [ -f $PROJECT/libs/$COMPAT_ABI/gdbserver ] ; then
498 if [ ! -f $PROJECT/libs/$COMPAT_ABI/gdbserver ] ; then
499 echo "ERROR: Could not find gdbserver binary under $PROJECT/libs/$COMPAT_ABI"