win_precompile.gypi 704 B

123456789101112131415161718192021
  1. # Copyright (c) 2011 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. # Include this file to make targets in your .gyp use the default
  5. # precompiled header on Windows, in debug builds only as the official
  6. # builders blow up (out of memory) if precompiled headers are used for
  7. # release builds.
  8. {
  9. 'conditions': [
  10. ['OS=="win" and chromium_win_pch==1', {
  11. 'target_defaults': {
  12. 'msvs_precompiled_header': '<(DEPTH)/build/precompile.h',
  13. 'msvs_precompiled_source': '<(DEPTH)/build/precompile.cc',
  14. 'sources': ['<(DEPTH)/build/precompile.cc'],
  15. }
  16. }],
  17. ],
  18. }