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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1198 # Set to 1 to enable java code coverage. Instruments classes during build | 1198 # Set to 1 to enable java code coverage. Instruments classes during build |
1199 # to produce .ec files during runtime. | 1199 # to produce .ec files during runtime. |
1200 'emma_coverage%': 0, | 1200 'emma_coverage%': 0, |
1201 | 1201 |
1202 # EMMA filter string consisting of a list of inclusion/exclusion patterns | 1202 # EMMA filter string consisting of a list of inclusion/exclusion patterns |
1203 # separated with whitespace and/or comma. Only has effect if | 1203 # separated with whitespace and/or comma. Only has effect if |
1204 # 'emma_coverage=1'. | 1204 # 'emma_coverage=1'. |
1205 'emma_filter%': '', | 1205 'emma_filter%': '', |
1206 | 1206 |
1207 # Set to 1 to enable running Android lint on java/class files. | 1207 # Set to 1 to enable running Android lint on java/class files. |
1208 'android_lint%': 1, | 1208 'android_lint%': 0, |
1209 | 1209 |
1210 # Although base/allocator lets you select a heap library via an | 1210 # Although base/allocator lets you select a heap library via an |
1211 # environment variable, the libcmt shim it uses sometimes gets in | 1211 # environment variable, the libcmt shim it uses sometimes gets in |
1212 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. | 1212 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. |
1213 # 'win_use_allocator_shim': 0, | 1213 # 'win_use_allocator_shim': 0, |
1214 # 'win_release_RuntimeLibrary': 2 | 1214 # 'win_release_RuntimeLibrary': 2 |
1215 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. | 1215 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. |
1216 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt | 1216 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt |
1217 | 1217 |
1218 # TODO(bradnelson): eliminate this when possible. | 1218 # TODO(bradnelson): eliminate this when possible. |
(...skipping 4453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5672 # settings in target dicts. SYMROOT is a special case, because many other | 5672 # settings in target dicts. SYMROOT is a special case, because many other |
5673 # Xcode variables depend on it, including variables such as | 5673 # Xcode variables depend on it, including variables such as |
5674 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5674 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5675 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5675 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5676 # files to appear (when present) in the UI as actual files and not red | 5676 # files to appear (when present) in the UI as actual files and not red |
5677 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5677 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5678 # and therefore SYMROOT, needs to be set at the project level. | 5678 # and therefore SYMROOT, needs to be set at the project level. |
5679 'SYMROOT': '<(DEPTH)/xcodebuild', | 5679 'SYMROOT': '<(DEPTH)/xcodebuild', |
5680 }, | 5680 }, |
5681 } | 5681 } |
OLD | NEW |