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

Unified Diff: tools/bisect_utils.py

Issue 331593007: Enable manual bisects on Chrome for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 6 years, 6 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 | « tools/bisect-perf-regression.py ('k') | tools/run-bisect-manual-test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bisect_utils.py
diff --git a/tools/bisect_utils.py b/tools/bisect_utils.py
index 650288f163ca2747ab51f37fd285dec9204ec2cd..ac5de35719fb6462d91d3bfa161b3c8a22744533 100644
--- a/tools/bisect_utils.py
+++ b/tools/bisect_utils.py
@@ -458,6 +458,9 @@ def SetupAndroidBuildEnvironment(opts, path_to_src=None):
except KeyError:
os.environ['GYP_DEFINES'] = 'OS=android'
+ if opts.use_goma:
+ os.environ['GYP_DEFINES'] = '%s %s' % (os.environ['GYP_DEFINES'],
+ 'use_goma=1')
return not proc.returncode
« no previous file with comments | « tools/bisect-perf-regression.py ('k') | tools/run-bisect-manual-test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698