Index: build/android/buildbot/bb_host_steps.py |
diff --git a/build/android/buildbot/bb_host_steps.py b/build/android/buildbot/bb_host_steps.py |
index 6630321d82904ef6ed538eaa6d911a3b73dcc358..1e927fb399ddd2bd61badd428c8f9597c3056bfd 100755 |
--- a/build/android/buildbot/bb_host_steps.py |
+++ b/build/android/buildbot/bb_host_steps.py |
@@ -4,6 +4,7 @@ |
# found in the LICENSE file. |
import os |
+import json |
import sys |
import bb_utils |
@@ -85,7 +86,9 @@ def BisectPerfRegression(options): |
RunCmd([SrcPath('tools', 'prepare-bisect-perf-regression.py'), |
'-w', os.path.join(constants.DIR_SOURCE_ROOT, os.pardir)]) |
RunCmd([SrcPath('tools', 'run-bisect-perf-regression.py'), |
- '-w', os.path.join(constants.DIR_SOURCE_ROOT, os.pardir)] + args) |
+ '-w', os.path.join(constants.DIR_SOURCE_ROOT, os.pardir), |
+ '--build-properties=%s' % json.dumps(options.build_properties)] + |
+ args) |
def GetHostStepCmds(): |