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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 'branding%': '<(branding)', | 276 'branding%': '<(branding)', |
277 'arm_version%': '<(arm_version)', | 277 'arm_version%': '<(arm_version)', |
278 'sysroot%': '<(sysroot)', | 278 'sysroot%': '<(sysroot)', |
279 'chroot_cmd%': '<(chroot_cmd)', | 279 'chroot_cmd%': '<(chroot_cmd)', |
280 | 280 |
281 # Set to 1 to enable fast builds. Set to 2 for even faster builds | 281 # Set to 1 to enable fast builds. Set to 2 for even faster builds |
282 # (it disables debug info for fastest compilation - only for use | 282 # (it disables debug info for fastest compilation - only for use |
283 # on compile-only bots). | 283 # on compile-only bots). |
284 'fastbuild%': 0, | 284 'fastbuild%': 0, |
285 | 285 |
| 286 # Set to 1 to force Visual C++ to use legacy debug information format /Z7. |
| 287 # This is useful for parallel compilation tools which can't support /Zi. |
| 288 # Only used on Windows. |
| 289 'win_z7%' : 0, |
| 290 |
286 # Set to 1 to enable dcheck in release. | 291 # Set to 1 to enable dcheck in release. |
287 'dcheck_always_on%': 0, | 292 'dcheck_always_on%': 0, |
288 | 293 |
289 # Set to 1 to make a build that disables unshipped tracing events. | 294 # Set to 1 to make a build that disables unshipped tracing events. |
290 # Note: this setting is ignored if buildtype=="Official". | 295 # Note: this setting is ignored if buildtype=="Official". |
291 'tracing_like_official_build%': 0, | 296 'tracing_like_official_build%': 0, |
292 | 297 |
293 # Disable image loader component extension by default. | 298 # Disable image loader component extension by default. |
294 'image_loader_extension%': 0, | 299 'image_loader_extension%': 0, |
295 | 300 |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
958 'desktop_linux%': '<(desktop_linux)', | 963 'desktop_linux%': '<(desktop_linux)', |
959 'use_x11%': '<(use_x11)', | 964 'use_x11%': '<(use_x11)', |
960 'use_gnome_keyring%': '<(use_gnome_keyring)', | 965 'use_gnome_keyring%': '<(use_gnome_keyring)', |
961 'linux_fpic%': '<(linux_fpic)', | 966 'linux_fpic%': '<(linux_fpic)', |
962 'chromeos%': '<(chromeos)', | 967 'chromeos%': '<(chromeos)', |
963 'enable_viewport%': '<(enable_viewport)', | 968 'enable_viewport%': '<(enable_viewport)', |
964 'enable_hidpi%': '<(enable_hidpi)', | 969 'enable_hidpi%': '<(enable_hidpi)', |
965 'use_xi2_mt%':'<(use_xi2_mt)', | 970 'use_xi2_mt%':'<(use_xi2_mt)', |
966 'image_loader_extension%': '<(image_loader_extension)', | 971 'image_loader_extension%': '<(image_loader_extension)', |
967 'fastbuild%': '<(fastbuild)', | 972 'fastbuild%': '<(fastbuild)', |
| 973 'win_z7%': '<(win_z7)', |
968 'dcheck_always_on%': '<(dcheck_always_on)', | 974 'dcheck_always_on%': '<(dcheck_always_on)', |
969 'tracing_like_official_build%': '<(tracing_like_official_build)', | 975 'tracing_like_official_build%': '<(tracing_like_official_build)', |
970 'python_ver%': '<(python_ver)', | 976 'python_ver%': '<(python_ver)', |
971 'arm_version%': '<(arm_version)', | 977 'arm_version%': '<(arm_version)', |
972 'arm_neon%': '<(arm_neon)', | 978 'arm_neon%': '<(arm_neon)', |
973 'arm_neon_optional%': '<(arm_neon_optional)', | 979 'arm_neon_optional%': '<(arm_neon_optional)', |
974 'sysroot%': '<(sysroot)', | 980 'sysroot%': '<(sysroot)', |
975 'chroot_cmd%': '<(chroot_cmd)', | 981 'chroot_cmd%': '<(chroot_cmd)', |
976 'system_libdir%': '<(system_libdir)', | 982 'system_libdir%': '<(system_libdir)', |
977 'component%': '<(component)', | 983 'component%': '<(component)', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 'emma_coverage%': 0, | 1099 'emma_coverage%': 0, |
1094 | 1100 |
1095 # EMMA filter string consisting of a list of inclusion/exclusion patterns | 1101 # EMMA filter string consisting of a list of inclusion/exclusion patterns |
1096 # separated with whitespace and/or comma. Only has effect if | 1102 # separated with whitespace and/or comma. Only has effect if |
1097 # 'emma_coverage=1'. | 1103 # 'emma_coverage=1'. |
1098 'emma_filter%': '', | 1104 'emma_filter%': '', |
1099 | 1105 |
1100 # Set to 1 to enable running Android lint on java/class files. | 1106 # Set to 1 to enable running Android lint on java/class files. |
1101 'android_lint%': 0, | 1107 'android_lint%': 0, |
1102 | 1108 |
1103 # Set to 1 to force Visual C++ to use legacy debug information format /Z7. | |
1104 # This is useful for parallel compilation tools which can't support /Zi. | |
1105 # Only used on Windows. | |
1106 'win_z7%' : 0, | |
1107 | |
1108 # Although base/allocator lets you select a heap library via an | 1109 # Although base/allocator lets you select a heap library via an |
1109 # environment variable, the libcmt shim it uses sometimes gets in | 1110 # environment variable, the libcmt shim it uses sometimes gets in |
1110 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. | 1111 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. |
1111 # 'win_use_allocator_shim': 0, | 1112 # 'win_use_allocator_shim': 0, |
1112 # 'win_release_RuntimeLibrary': 2 | 1113 # 'win_release_RuntimeLibrary': 2 |
1113 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. | 1114 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. |
1114 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt | 1115 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt |
1115 | 1116 |
1116 # TODO(bradnelson): eliminate this when possible. | 1117 # TODO(bradnelson): eliminate this when possible. |
1117 # To allow local gyp files to prevent release.vsprops from being included. | 1118 # To allow local gyp files to prevent release.vsprops from being included. |
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2090 | 2091 |
2091 ['desktop_linux==1 and use_aura==1 and use_x11==1', { | 2092 ['desktop_linux==1 and use_aura==1 and use_x11==1', { |
2092 'use_clipboard_aurax11%': 1, | 2093 'use_clipboard_aurax11%': 1, |
2093 }], | 2094 }], |
2094 | 2095 |
2095 ['OS=="win" and use_goma==1', { | 2096 ['OS=="win" and use_goma==1', { |
2096 # goma doesn't support pch yet. | 2097 # goma doesn't support pch yet. |
2097 'chromium_win_pch': 0, | 2098 'chromium_win_pch': 0, |
2098 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. | 2099 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. |
2099 'conditions': [ | 2100 'conditions': [ |
2100 ['fastbuild==0', { | 2101 ['win_z7==0', { |
2101 'win_z7': 1, | 2102 'fastbuild': 1, |
2102 }], | 2103 }], |
2103 ], | 2104 ], |
2104 }], | 2105 }], |
2105 | 2106 |
2106 ['OS=="win" and (clang==1 or asan==1)', { | 2107 ['OS=="win" and (clang==1 or asan==1)', { |
2107 'chromium_win_pch': 0, | 2108 'chromium_win_pch': 0, |
2108 }], | 2109 }], |
2109 | 2110 |
2110 # The seccomp-bpf sandbox is only supported on three architectures | 2111 # The seccomp-bpf sandbox is only supported on three architectures |
2111 # currently. | 2112 # currently. |
(...skipping 3111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5223 # settings in target dicts. SYMROOT is a special case, because many other | 5224 # settings in target dicts. SYMROOT is a special case, because many other |
5224 # Xcode variables depend on it, including variables such as | 5225 # Xcode variables depend on it, including variables such as |
5225 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5226 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5226 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5227 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5227 # files to appear (when present) in the UI as actual files and not red | 5228 # files to appear (when present) in the UI as actual files and not red |
5228 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5229 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5229 # and therefore SYMROOT, needs to be set at the project level. | 5230 # and therefore SYMROOT, needs to be set at the project level. |
5230 'SYMROOT': '<(DEPTH)/xcodebuild', | 5231 'SYMROOT': '<(DEPTH)/xcodebuild', |
5231 }, | 5232 }, |
5232 } | 5233 } |
OLD | NEW |