| OLD | NEW |
| 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 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 }, { | 1057 }, { |
| 1058 # With instrumentation enabled, debug info puts libchrome.so over 4gb, | 1058 # With instrumentation enabled, debug info puts libchrome.so over 4gb, |
| 1059 # which causes the linker to produce an invalid ELF. | 1059 # which causes the linker to produce an invalid ELF. |
| 1060 # http://crbug.com/574476 | 1060 # http://crbug.com/574476 |
| 1061 'fastbuild%': 2, | 1061 'fastbuild%': 2, |
| 1062 }], | 1062 }], |
| 1063 # Enable hang report capture. Capture can only be enabled for 32bit | 1063 # Enable hang report capture. Capture can only be enabled for 32bit |
| 1064 # Windows. | 1064 # Windows. |
| 1065 ['OS=="win" and target_arch=="ia32" and branding=="Chrome"', { | 1065 ['OS=="win" and target_arch=="ia32" and branding=="Chrome"', { |
| 1066 # Enable hang reports from the watcher process. | 1066 # Enable hang reports from the watcher process. |
| 1067 'kasko_hang_reports%': 1, | 1067 'kasko_hang_reports%': 0, |
| 1068 # Enable failed rendez-vous reports. | 1068 # Enable failed rendez-vous reports. |
| 1069 'kasko_failed_rdv_reports%': 1, | 1069 'kasko_failed_rdv_reports%': 0, |
| 1070 }, { | 1070 }, { |
| 1071 # Enable hang reports from the watcher process. | 1071 # Enable hang reports from the watcher process. |
| 1072 'kasko_hang_reports%': 0, | 1072 'kasko_hang_reports%': 0, |
| 1073 # Enable failed rendez-vous reports. | 1073 # Enable failed rendez-vous reports. |
| 1074 'kasko_failed_rdv_reports%': 0, | 1074 'kasko_failed_rdv_reports%': 0, |
| 1075 }], | 1075 }], |
| 1076 ], | 1076 ], |
| 1077 | 1077 |
| 1078 # Kasko reporting is disabled by default, but may get enabled below. | 1078 # Kasko reporting is disabled by default, but may get enabled below. |
| 1079 'kasko%': 0, | 1079 'kasko%': 0, |
| (...skipping 5249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6329 # settings in target dicts. SYMROOT is a special case, because many other | 6329 # settings in target dicts. SYMROOT is a special case, because many other |
| 6330 # Xcode variables depend on it, including variables such as | 6330 # Xcode variables depend on it, including variables such as |
| 6331 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6331 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6332 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6332 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6333 # files to appear (when present) in the UI as actual files and not red | 6333 # files to appear (when present) in the UI as actual files and not red |
| 6334 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6334 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6335 # and therefore SYMROOT, needs to be set at the project level. | 6335 # and therefore SYMROOT, needs to be set at the project level. |
| 6336 'SYMROOT': '<(DEPTH)/xcodebuild', | 6336 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6337 }, | 6337 }, |
| 6338 } | 6338 } |
| OLD | NEW |