OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """This script is wrapper for Chromium that adds some support for how GYP | 5 """This script is wrapper for Chromium that adds some support for how GYP |
6 is invoked by Chromium beyond what can be done in the gclient hooks. | 6 is invoked by Chromium beyond what can be done in the gclient hooks. |
7 """ | 7 """ |
8 | 8 |
9 import argparse | 9 import argparse |
10 import gc | 10 import gc |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
313 | 313 |
314 args.extend( | 314 args.extend( |
315 ['-I' + i for i in additional_include_files(supplemental_includes, args)]) | 315 ['-I' + i for i in additional_include_files(supplemental_includes, args)]) |
316 | 316 |
317 args.extend(['-D', 'gyp_output_dir=' + GetOutputDirectory()]) | 317 args.extend(['-D', 'gyp_output_dir=' + GetOutputDirectory()]) |
318 | 318 |
319 mac_toolchain_dir = mac_toolchain.GetToolchainDirectory() | 319 mac_toolchain_dir = mac_toolchain.GetToolchainDirectory() |
320 if mac_toolchain_dir: | 320 if mac_toolchain_dir: |
321 args.append('-Gmac_toolchain_dir=' + mac_toolchain_dir) | 321 args.append('-Gmac_toolchain_dir=' + mac_toolchain_dir) |
322 | 322 |
323 # TODO(crbug.com/432967) - We are eventually going to switch GYP off | |
324 # by default for all Chromium builds, so this list of configurations | |
325 # will get broader and broader. | |
326 if ('--running-as-hook' in args and | |
scottmg
2016/04/14 22:29:57
Maybe running_as_hook = '--running-as-hook' and us
| |
327 os.environ.get('GYP_CHROMIUM_NO_ACTION', None) != '0' and | |
328 (sys.platform.startswith('linux') and not gyp_vars_dict)): | |
329 print 'GYP is now disabled in this configuration by default in runhooks.\n' | |
330 print 'If you really want to run this, either run ' | |
331 print '`python build/gyp_chromium.py` explicitly by hand' | |
332 print 'or set the environment variable GYP_CHROMIUM_NO_ACTION=0.' | |
333 sys.exit(0) | |
334 | |
335 if '--running-as-hook' in args: | |
336 args.remove('--running-as-hook') | |
337 | |
323 if not use_analyzer: | 338 if not use_analyzer: |
324 print 'Updating projects from gyp files...' | 339 print 'Updating projects from gyp files...' |
325 sys.stdout.flush() | 340 sys.stdout.flush() |
326 | 341 |
327 # Off we go... | 342 # Off we go... |
328 gyp_rc = gyp.main(args) | 343 gyp_rc = gyp.main(args) |
329 | 344 |
330 if not use_analyzer: | 345 if not use_analyzer: |
331 vs2013_runtime_dll_dirs = vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs() | 346 vs2013_runtime_dll_dirs = vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs() |
332 if vs2013_runtime_dll_dirs: | 347 if vs2013_runtime_dll_dirs: |
333 x64_runtime, x86_runtime = vs2013_runtime_dll_dirs | 348 x64_runtime, x86_runtime = vs2013_runtime_dll_dirs |
334 vs_toolchain.CopyVsRuntimeDlls( | 349 vs_toolchain.CopyVsRuntimeDlls( |
335 os.path.join(chrome_src, GetOutputDirectory()), | 350 os.path.join(chrome_src, GetOutputDirectory()), |
336 (x86_runtime, x64_runtime)) | 351 (x86_runtime, x64_runtime)) |
337 | 352 |
338 sys.exit(gyp_rc) | 353 sys.exit(gyp_rc) |
339 | 354 |
340 if __name__ == '__main__': | 355 if __name__ == '__main__': |
341 sys.exit(main()) | 356 sys.exit(main()) |
OLD | NEW |