diff options
author | simonhatch <simonhatch@chromium.org> | 2014-12-23 10:35:06 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-23 18:35:42 +0000 |
commit | 88572ab2a2a9b40238a1eaca9efbc0532e76fd7f (patch) | |
tree | d1ff5fc4b10a4f817a96a37c05252c1ef0621d3c /tools/run-bisect-perf-regression.py | |
parent | 46a7eac4312ee91367453ea29eed0bca6078fb58 (diff) | |
download | chromium_src-88572ab2a2a9b40238a1eaca9efbc0532e76fd7f.zip chromium_src-88572ab2a2a9b40238a1eaca9efbc0532e76fd7f.tar.gz chromium_src-88572ab2a2a9b40238a1eaca9efbc0532e76fd7f.tar.bz2 |
[bisect] - Set goma_dir parameter from run-bisect-perf-regression.py.
This needs to be set in order to build properly from the bisect script.
BUG=
Review URL: https://codereview.chromium.org/815083004
Cr-Commit-Position: refs/heads/master@{#309564}
Diffstat (limited to 'tools/run-bisect-perf-regression.py')
-rwxr-xr-x | tools/run-bisect-perf-regression.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py index 3e75ec4..c8c0de2 100755 --- a/tools/run-bisect-perf-regression.py +++ b/tools/run-bisect-perf-regression.py @@ -539,6 +539,8 @@ def _RunBisectionScript( 'on Windows XP platform. Please refer to crbug.com/330900.') path_to_goma = None cmd.append('--use_goma') + cmd.append('--goma_dir') + cmd.append(os.path.abspath(path_to_goma)) if path_to_extra_src: cmd.extend(['--extra_src', path_to_extra_src]) |