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

Unified Diff: build/android/pylib/__init__.py

Issue 2596443004: [Android] Generate html file for test runner trace instead of json. (Closed)
Patch Set: Created 4 years 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
Index: build/android/pylib/__init__.py
diff --git a/build/android/pylib/__init__.py b/build/android/pylib/__init__.py
index 5dc2d761da51bbd0959d8aa8d26775b0907dbb09..851e9c07b4fdd9483fa20d0ba0978429028f31e6 100644
--- a/build/android/pylib/__init__.py
+++ b/build/android/pylib/__init__.py
@@ -13,8 +13,15 @@ _PYTRACE_PATH = os.path.abspath(os.path.join(
os.path.dirname(__file__), '..', '..', '..', 'third_party', 'catapult',
'common', 'py_trace_event'))
+_TRACE2HTML_PATH = os.path.abspath(os.path.join(
+ os.path.dirname(__file__), '..', '..', '..', 'third_party', 'catapult',
+ 'tracing'))
+
if _DEVIL_PATH not in sys.path:
sys.path.append(_DEVIL_PATH)
if _PYTRACE_PATH not in sys.path:
sys.path.append(_PYTRACE_PATH)
+
+if _TRACE2HTML_PATH not in sys.path:
+ sys.path.append(_TRACE2HTML_PATH)

Powered by Google App Engine
This is Rietveld 408576698