Index: build/android/adb_gdb |
diff --git a/build/android/adb_gdb b/build/android/adb_gdb |
index 65ec7b20b87df53f1de71e9ac4d31e3cad6c1ee4..2d670dd8e9f0b495041dfd16d96be1e706bb5130 100755 |
--- a/build/android/adb_gdb |
+++ b/build/android/adb_gdb |
@@ -707,12 +707,14 @@ get_file_timestamp () { |
# |
detect_symbol_dir () { |
local SUBDIRS SUBDIR LIST DIR DIR_LIBS TSTAMP |
- # Note: Ninja places debug libraries under out/$BUILDTYPE/lib/, while |
- # Make places then under out/$BUILDTYPE/lib.target. |
+ # Make places them under out/$BUILDTYPE/lib.target. |
+ # GYP places debug libraries under out/$BUILDTYPE/lib |
+ # GN places them under out/$BUILDTYPE/lib.unstripped |
if [ "$1" ]; then |
- SUBDIRS="$1/lib $1/lib.target" |
+ SUBDIRS="$1/lib $1/lib.target $1/lib.unstripped" |
else |
SUBDIRS="Release/lib Debug/lib Release/lib.target Debug/lib.target" |
+ SUBDIRS+=" Release/lib.unstripped Debug/lib.unstripped" |
fi |
LIST=$TMPDIR/scan-subdirs-$$.txt |
printf "" > "$LIST" |