| 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 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |