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 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1175 # And if we want to dump symbols for Breakpad-enabled builds. | 1175 # And if we want to dump symbols for Breakpad-enabled builds. |
1176 'linux_dump_symbols%': 0, | 1176 'linux_dump_symbols%': 0, |
1177 # And if we want to strip the binary after dumping symbols. | 1177 # And if we want to strip the binary after dumping symbols. |
1178 'linux_strip_binary%': 0, | 1178 'linux_strip_binary%': 0, |
1179 # Strip the test binaries needed for Linux reliability tests. | 1179 # Strip the test binaries needed for Linux reliability tests. |
1180 'linux_strip_reliability_tests%': 0, | 1180 'linux_strip_reliability_tests%': 0, |
1181 # If we want stack unwind support for backtrace(). | 1181 # If we want stack unwind support for backtrace(). |
1182 'debug_unwind_tables%': 1, | 1182 'debug_unwind_tables%': 1, |
1183 'release_unwind_tables%': 1, | 1183 'release_unwind_tables%': 1, |
1184 | 1184 |
| 1185 # Override where to find binutils |
| 1186 'binutils_version%': 0, |
| 1187 'binutils_dir%': '', |
| 1188 |
1185 # Enable TCMalloc. | 1189 # Enable TCMalloc. |
1186 # TODO(dmikurube): Change Linux default of use_allocator to "tcmalloc". | 1190 # TODO(dmikurube): Change Linux default of use_allocator to "tcmalloc". |
1187 # TODO(dmikurube): Change Android default of use_allocator to "none". | 1191 # TODO(dmikurube): Change Android default of use_allocator to "none". |
1188 # TODO(dmikurube): Kill {linux|android}_use_tcmalloc. http://crbug.com/34555
4 | 1192 # TODO(dmikurube): Kill {linux|android}_use_tcmalloc. http://crbug.com/34555
4 |
1189 # {linux|android}_use_tcmalloc are to be replaced with use_allocator. | 1193 # {linux|android}_use_tcmalloc are to be replaced with use_allocator. |
1190 # They are now used only if use_allocator=="see_use_tcmalloc" (default). | 1194 # They are now used only if use_allocator=="see_use_tcmalloc" (default). |
1191 # TODO(dmikurube): Assert when {linux|android}_use_tcmalloc is explicitly sp
ecified. | 1195 # TODO(dmikurube): Assert when {linux|android}_use_tcmalloc is explicitly sp
ecified. |
1192 'linux_use_tcmalloc%': 1, | 1196 'linux_use_tcmalloc%': 1, |
1193 'android_use_tcmalloc%': 0, | 1197 'android_use_tcmalloc%': 0, |
1194 'use_allocator%': 'see_use_tcmalloc', | 1198 'use_allocator%': 'see_use_tcmalloc', |
(...skipping 4054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5249 # settings in target dicts. SYMROOT is a special case, because many other | 5253 # settings in target dicts. SYMROOT is a special case, because many other |
5250 # Xcode variables depend on it, including variables such as | 5254 # Xcode variables depend on it, including variables such as |
5251 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5255 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5252 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5256 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5253 # files to appear (when present) in the UI as actual files and not red | 5257 # files to appear (when present) in the UI as actual files and not red |
5254 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5258 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5255 # and therefore SYMROOT, needs to be set at the project level. | 5259 # and therefore SYMROOT, needs to be set at the project level. |
5256 'SYMROOT': '<(DEPTH)/xcodebuild', | 5260 'SYMROOT': '<(DEPTH)/xcodebuild', |
5257 }, | 5261 }, |
5258 } | 5262 } |
OLD | NEW |