1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/build/win_precompile.gypi Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +# Copyright (c) 2011 The Chromium Authors. All rights reserved. 1.5 +# Use of this source code is governed by a BSD-style license that can be 1.6 +# found in the LICENSE file. 1.7 + 1.8 +# Include this file to make targets in your .gyp use the default 1.9 +# precompiled header on Windows, in debug builds only as the official 1.10 +# builders blow up (out of memory) if precompiled headers are used for 1.11 +# release builds. 1.12 + 1.13 +{ 1.14 + 'conditions': [ 1.15 + ['OS=="win" and chromium_win_pch==1', { 1.16 + 'target_defaults': { 1.17 + 'msvs_precompiled_header': '<(DEPTH)/build/precompile.h', 1.18 + 'msvs_precompiled_source': '<(DEPTH)/build/precompile.cc', 1.19 + 'sources': ['<(DEPTH)/build/precompile.cc'], 1.20 + } 1.21 + }], 1.22 + ], 1.23 +}