| Index: tools/bisect_utils.py
|
| diff --git a/tools/bisect_utils.py b/tools/bisect_utils.py
|
| index 650288f163ca2747ab51f37fd285dec9204ec2cd..a0c05a3af8f6e5127e0d4c42a6e4295632649446 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
|
|
|
|
|
|
|