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

Side by Side Diff: build/common.gypi

Issue 2010993003: Revert of Temporarily enable hang report capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | third_party/kasko/kasko.gni » ('j') | 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 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 }, { 1034 }, {
1035 # With instrumentation enabled, debug info puts libchrome.so over 4gb, 1035 # With instrumentation enabled, debug info puts libchrome.so over 4gb,
1036 # which causes the linker to produce an invalid ELF. 1036 # which causes the linker to produce an invalid ELF.
1037 # http://crbug.com/574476 1037 # http://crbug.com/574476
1038 'fastbuild%': 2, 1038 'fastbuild%': 2,
1039 }], 1039 }],
1040 # Enable hang report capture. Capture can only be enabled for 32bit 1040 # Enable hang report capture. Capture can only be enabled for 32bit
1041 # Windows. 1041 # Windows.
1042 ['OS=="win" and target_arch=="ia32" and branding=="Chrome"', { 1042 ['OS=="win" and target_arch=="ia32" and branding=="Chrome"', {
1043 # Enable hang reports from the watcher process. 1043 # Enable hang reports from the watcher process.
1044 'kasko_hang_reports%': 1, 1044 'kasko_hang_reports%': 0,
1045 # Enable failed rendez-vous reports. 1045 # Enable failed rendez-vous reports.
1046 'kasko_failed_rdv_reports%': 1, 1046 'kasko_failed_rdv_reports%': 0,
1047 }, { 1047 }, {
1048 # Enable hang reports from the watcher process. 1048 # Enable hang reports from the watcher process.
1049 'kasko_hang_reports%': 0, 1049 'kasko_hang_reports%': 0,
1050 # Enable failed rendez-vous reports. 1050 # Enable failed rendez-vous reports.
1051 'kasko_failed_rdv_reports%': 0, 1051 'kasko_failed_rdv_reports%': 0,
1052 }], 1052 }],
1053 ], 1053 ],
1054 1054
1055 # Kasko reporting is disabled by default, but may get enabled below. 1055 # Kasko reporting is disabled by default, but may get enabled below.
1056 'kasko%': 0, 1056 'kasko%': 0,
(...skipping 5243 matching lines...) Expand 10 before | Expand all | Expand 10 after
6300 # settings in target dicts. SYMROOT is a special case, because many other 6300 # settings in target dicts. SYMROOT is a special case, because many other
6301 # Xcode variables depend on it, including variables such as 6301 # Xcode variables depend on it, including variables such as
6302 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6302 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6303 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6303 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6304 # files to appear (when present) in the UI as actual files and not red 6304 # files to appear (when present) in the UI as actual files and not red
6305 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6305 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6306 # and therefore SYMROOT, needs to be set at the project level. 6306 # and therefore SYMROOT, needs to be set at the project level.
6307 'SYMROOT': '<(DEPTH)/xcodebuild', 6307 'SYMROOT': '<(DEPTH)/xcodebuild',
6308 }, 6308 },
6309 } 6309 }
OLDNEW
« no previous file with comments | « no previous file | third_party/kasko/kasko.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698