Chromium Code Reviews| Index: build/android/pylib/cmd_helper.py |
| diff --git a/build/android/pylib/cmd_helper.py b/build/android/pylib/cmd_helper.py |
| index de091ef76303c594f361de01036f6ea84141a08e..0562f43505254844ca79e3c0a42dd62edf8a85eb 100644 |
| --- a/build/android/pylib/cmd_helper.py |
| +++ b/build/android/pylib/cmd_helper.py |
| @@ -100,7 +100,8 @@ def GetCmdStatusAndOutput(args, cwd=None, shell=False): |
| class OutDirectory(object): |
| - _out_directory = os.path.join(constants.DIR_SOURCE_ROOT, 'out') |
| + _out_directory = os.path.join(constants.DIR_SOURCE_ROOT, |
| + os.environ.get('CHROMIUM_OUT_DIR','out')) |
|
bulach
2013/08/08 12:29:58
nit: indent another 2 since it's a continuation..
|
| @staticmethod |
| def set(out_directory): |
| OutDirectory._out_directory = out_directory |