| Index: tools/auto_bisect/builder.py
|
| diff --git a/tools/auto_bisect/builder.py b/tools/auto_bisect/builder.py
|
| index f039a57e5d988449cc9d4782ea0c9e51e90637a0..6b530f78ac133576640cda54f9462cbcb8404206 100644
|
| --- a/tools/auto_bisect/builder.py
|
| +++ b/tools/auto_bisect/builder.py
|
| @@ -40,7 +40,8 @@ class Builder(object):
|
| 'Path to visual studio could not be determined.')
|
| else:
|
| SetBuildSystemDefault(opts.build_preference, opts.use_goma,
|
| - opts.goma_dir)
|
| + # Need to re-escape goma dir, see crbug.com/394990
|
| + opts.goma_dir.encode('string_escape'))
|
| else:
|
| if not opts.build_preference:
|
| if 'ninja' in os.getenv('GYP_GENERATORS', default=''):
|
|
|