Chromium Code Reviews| 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') |
|
rmcilroy
2014/06/17 17:20:12
nit - align to brackets.
aberent
2014/06/18 10:10:10
Done.
|
| return not proc.returncode |