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

Unified Diff: tools/telemetry/telemetry/core/bitmap.py

Issue 643973002: Add multi-architecture support in telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix trybot failure Created 6 years, 2 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
Index: tools/telemetry/telemetry/core/bitmap.py
diff --git a/tools/telemetry/telemetry/core/bitmap.py b/tools/telemetry/telemetry/core/bitmap.py
index 9acfa19f917e76451ee344c3134d4de6a429b290..f130cc4317207bd7f968c084c6a40b7be59edfeb 100644
--- a/tools/telemetry/telemetry/core/bitmap.py
+++ b/tools/telemetry/telemetry/core/bitmap.py
@@ -123,7 +123,9 @@ class _BitmapTools(object):
def __init__(self, dimensions, pixels):
binary = support_binaries.FindPath(
- 'bitmaptools', platform.GetHostPlatform().GetOSName())
+ 'bitmaptools',
+ platform.GetHostPlatform().GetArchName(),
+ platform.GetHostPlatform().GetOSName())
assert binary, 'You must build bitmaptools first!'
self._popen = subprocess.Popen([binary],

Powered by Google App Engine
This is Rietveld 408576698