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

Side by Side Diff: build/common.gypi

Issue 12207129: Disable RTC in coverage builds. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 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
« 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 1865 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 'cflags': [ '-ftest-coverage', 1876 'cflags': [ '-ftest-coverage',
1877 '-fprofile-arcs' ], 1877 '-fprofile-arcs' ],
1878 'link_settings': { 'libraries': [ '-lgcov' ] }, 1878 'link_settings': { 'libraries': [ '-lgcov' ] },
1879 }], 1879 }],
1880 ['OS=="win"', { 1880 ['OS=="win"', {
1881 'variables': { 1881 'variables': {
1882 # Disable incremental linking for all modules. 1882 # Disable incremental linking for all modules.
1883 # 0: inherit, 1: disabled, 2: enabled. 1883 # 0: inherit, 1: disabled, 2: enabled.
1884 'msvs_debug_link_incremental': '1', 1884 'msvs_debug_link_incremental': '1',
1885 'msvs_large_module_debug_link_mode': '1', 1885 'msvs_large_module_debug_link_mode': '1',
1886 # Disable RTC. Syzygy explicitly doesn't support RTC instrumented
1887 # binaries for now.
1888 'win_debug_RuntimeChecks': '0',
chrisha 2013/02/12 18:37:05 It's not immediately evident looking at the diff,
1886 }, 1889 },
1887 'defines': [ 1890 'defines': [
1888 # Disable iterator debugging (huge speed boost without any 1891 # Disable iterator debugging (huge speed boost without any
1889 # change in coverage results). 1892 # change in coverage results).
1890 '_HAS_ITERATOR_DEBUGGING=0', 1893 '_HAS_ITERATOR_DEBUGGING=0',
1891 ], 1894 ],
1892 'msvs_settings': { 1895 'msvs_settings': {
1893 'VCLinkerTool': { 1896 'VCLinkerTool': {
1894 # Enable profile information (necessary for coverage 1897 # Enable profile information (necessary for coverage
1895 # instrumentation). This is incompatible with incremental 1898 # instrumentation). This is incompatible with incremental
(...skipping 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after
4029 # settings in target dicts. SYMROOT is a special case, because many other 4032 # settings in target dicts. SYMROOT is a special case, because many other
4030 # Xcode variables depend on it, including variables such as 4033 # Xcode variables depend on it, including variables such as
4031 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4034 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4032 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4035 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4033 # files to appear (when present) in the UI as actual files and not red 4036 # files to appear (when present) in the UI as actual files and not red
4034 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4037 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4035 # and therefore SYMROOT, needs to be set at the project level. 4038 # and therefore SYMROOT, needs to be set at the project level.
4036 'SYMROOT': '<(DEPTH)/xcodebuild', 4039 'SYMROOT': '<(DEPTH)/xcodebuild',
4037 }, 4040 },
4038 } 4041 }
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