Chromium Code Reviews| Index: build/landmines.py |
| diff --git a/build/landmines.py b/build/landmines.py |
| index a03486499bba4b055881804d24915d2f8db80fd1..3afb4fda734d5278b9f0b8d79a86cd30e26d379f 100755 |
| --- a/build/landmines.py |
| +++ b/build/landmines.py |
| @@ -44,7 +44,13 @@ def get_build_dir(build_tool, is_iphone=False): |
| if build_tool == 'xcode': |
| ret = os.path.join(SRC_DIR, 'xcodebuild') |
| elif build_tool in ['make', 'ninja', 'ninja-ios']: # TODO: Remove ninja-ios. |
| - ret = os.path.join(SRC_DIR, os.environ.get('CHROMIUM_OUT_DIR', 'out')) |
| + output_dir = None |
|
scottmg
2014/10/31 16:40:14
delete this line
|
| + if ('CHROMIUM_OUT_DIR' not in os.environ and |
| + 'output_dir' in landmine_utils.gyp_generator_flags()): |
| + output_dir = landmine_utils.gyp_generator_flags()['output_dir'] |
| + else: |
| + output_dir = os.environ.get('CHROMIUM_OUT_DIR', 'out') |
| + ret = os.path.join(SRC_DIR, output_dir) |
| else: |
| raise NotImplementedError('Unexpected GYP_GENERATORS (%s)' % build_tool) |
| return os.path.abspath(ret) |