Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Unified Diff: platform_tools/android/bin/android_gdb_exe

Issue 398733002: Make gdb work for 64-bit Skia (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | platform_tools/android/bin/android_gdbserver » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/bin/android_gdb_exe
diff --git a/platform_tools/android/bin/android_gdb_exe b/platform_tools/android/bin/android_gdb_exe
index 64be9bbd38774f5e241839d9115faceb60044693..42299949123abfbcd417147856bcba19c175a562 100755
--- a/platform_tools/android/bin/android_gdb_exe
+++ b/platform_tools/android/bin/android_gdb_exe
@@ -29,13 +29,16 @@ GDBSETUP=$GDB_TMP_DIR/gdb.setup
echo "file ${GDB_TMP_DIR}/skia_launcher"
echo "target remote :${PORT}"
echo "set solib-absolute-prefix ${GDB_TMP_DIR}"
- echo "set solib-search-path ${GDB_TMP_DIR}
+ echo "set solib-search-path ${GDB_TMP_DIR}"
# The apps shared library symbols are not loaded by default so we
- # load them here."
+ # load them here.
echo "break launch_app"
echo "continue"
echo "sharedLibrary ${APP_NAME}"
+
+ # Load libskia_android.so here.
+ echo "sharedLibrary skia_android"
} > $GDBSETUP
« no previous file with comments | « no previous file | platform_tools/android/bin/android_gdbserver » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698