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

Unified Diff: tools/telemetry/telemetry/core/chrome/android_browser_backend.py

Issue 16094010: [Telemetry] Fix stack trace printing on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/chrome/android_browser_backend.py
diff --git a/tools/telemetry/telemetry/core/chrome/android_browser_backend.py b/tools/telemetry/telemetry/core/chrome/android_browser_backend.py
index ab8b3ddbd384cc65c5c8f21fdaabdebd3c2bb9ad..86ceae27639b9f6e2f5895a80ac58642e97db442 100644
--- a/tools/telemetry/telemetry/core/chrome/android_browser_backend.py
+++ b/tools/telemetry/telemetry/core/chrome/android_browser_backend.py
@@ -259,6 +259,8 @@ class AndroidBrowserBackend(browser_backend.BrowserBackend):
def GetStandardOutput(self):
# If we can find symbols and there is a stack, output the symbolized stack.
symbol_paths = [
+ os.path.join(adb_commands.GetOutDirectory(), 'Release', 'lib'),
+ os.path.join(adb_commands.GetOutDirectory(), 'Debug', 'lib'),
os.path.join(adb_commands.GetOutDirectory(), 'Release', 'lib.target'),
os.path.join(adb_commands.GetOutDirectory(), 'Debug', 'lib.target')]
for symbol_path in symbol_paths:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698