Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: build/common.gypi

Issue 10392063: Disable precompiled headers when using 2010 on an Official build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 }], 369 }],
370 370
371 # Use GPU accelerated cross process image transport by default 371 # Use GPU accelerated cross process image transport by default
372 # on linux builds with the Aura window manager 372 # on linux builds with the Aura window manager
373 ['use_aura==1 and OS=="linux"', { 373 ['use_aura==1 and OS=="linux"', {
374 'ui_compositor_image_transport%': 1, 374 'ui_compositor_image_transport%': 1,
375 }, { 375 }, {
376 'ui_compositor_image_transport%': 0, 376 'ui_compositor_image_transport%': 0,
377 }], 377 }],
378 378
379 # Turn precompiled headers on by default for VS 2010. 379 # Turn precompiled headers on by default for VS2010 non-Official builds.
380 ['OS=="win" and MSVS_VERSION=="2010"', { 380 ['OS=="win" and MSVS_VERSION=="2010" and buildtype!="Official"', {
381 'chromium_win_pch%': 1 381 'chromium_win_pch%': 1
382 }], 382 }],
383 383
384 ['use_aura==1 or chromeos==1', { 384 ['use_aura==1 or chromeos==1', {
385 'enable_plugin_installation%': 0, 385 'enable_plugin_installation%': 0,
386 }, { 386 }, {
387 'enable_plugin_installation%': 1, 387 'enable_plugin_installation%': 1,
388 }], 388 }],
389 389
390 # Set to 0 to not use third_party/gold as the linker. 390 # Set to 0 to not use third_party/gold as the linker.
(...skipping 2386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2777 # settings in target dicts. SYMROOT is a special case, because many other 2777 # settings in target dicts. SYMROOT is a special case, because many other
2778 # Xcode variables depend on it, including variables such as 2778 # Xcode variables depend on it, including variables such as
2779 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2779 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2780 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2780 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2781 # files to appear (when present) in the UI as actual files and not red 2781 # files to appear (when present) in the UI as actual files and not red
2782 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2782 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2783 # and therefore SYMROOT, needs to be set at the project level. 2783 # and therefore SYMROOT, needs to be set at the project level.
2784 'SYMROOT': '<(DEPTH)/xcodebuild', 2784 'SYMROOT': '<(DEPTH)/xcodebuild',
2785 }, 2785 },
2786 } 2786 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698