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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 # share the same compiler executable as the system driving the compilation, | 905 # share the same compiler executable as the system driving the compilation, |
906 # because precompiled headers rely on pointers into a specific compiler | 906 # because precompiled headers rely on pointers into a specific compiler |
907 # executable's image. Setting this to 0 is needed to use an experimental | 907 # executable's image. Setting this to 0 is needed to use an experimental |
908 # Linux-Mac cross compiler distcc farm. | 908 # Linux-Mac cross compiler distcc farm. |
909 'chromium_mac_pch%': 1, | 909 'chromium_mac_pch%': 1, |
910 | 910 |
911 # The default value for mac_strip in target_defaults. This cannot be | 911 # The default value for mac_strip in target_defaults. This cannot be |
912 # set there, per the comment about variable% in a target_defaults. | 912 # set there, per the comment about variable% in a target_defaults. |
913 'mac_strip_release%': 1, | 913 'mac_strip_release%': 1, |
914 | 914 |
915 # Set to 1 to enable code coverage. In addition to build changes | 915 # Set to 1 to enable native code coverage. In addition to build changes |
916 # (e.g. extra CFLAGS), also creates a new target in the src/chrome | 916 # (e.g. extra CFLAGS), also creates a new target in the src/chrome |
917 # project file called "coverage". | 917 # project file called "coverage". |
918 # Currently ignored on Windows. | 918 # Currently ignored on Windows. |
919 'coverage%': 0, | 919 'coverage%': 0, |
920 | 920 |
| 921 # Set to 1 to enable java code coverage. Instruments classes during build |
| 922 # to produce .ec files during runtime. |
| 923 'emma_coverage%': 0, |
| 924 |
921 # Set to 1 to force Visual C++ to use legacy debug information format /Z7. | 925 # Set to 1 to force Visual C++ to use legacy debug information format /Z7. |
922 # This is useful for parallel compilation tools which can't support /Zi. | 926 # This is useful for parallel compilation tools which can't support /Zi. |
923 # Only used on Windows. | 927 # Only used on Windows. |
924 'win_z7%' : 0, | 928 'win_z7%' : 0, |
925 | 929 |
926 # Although base/allocator lets you select a heap library via an | 930 # Although base/allocator lets you select a heap library via an |
927 # environment variable, the libcmt shim it uses sometimes gets in | 931 # environment variable, the libcmt shim it uses sometimes gets in |
928 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. | 932 # the way. To disable it entirely, and switch to normal msvcrt, do e.g. |
929 # 'win_use_allocator_shim': 0, | 933 # 'win_use_allocator_shim': 0, |
930 # 'win_release_RuntimeLibrary': 2 | 934 # 'win_release_RuntimeLibrary': 2 |
(...skipping 3780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4711 # settings in target dicts. SYMROOT is a special case, because many other | 4715 # settings in target dicts. SYMROOT is a special case, because many other |
4712 # Xcode variables depend on it, including variables such as | 4716 # Xcode variables depend on it, including variables such as |
4713 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4717 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4714 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4718 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4715 # files to appear (when present) in the UI as actual files and not red | 4719 # files to appear (when present) in the UI as actual files and not red |
4716 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4720 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4717 # and therefore SYMROOT, needs to be set at the project level. | 4721 # and therefore SYMROOT, needs to be set at the project level. |
4718 'SYMROOT': '<(DEPTH)/xcodebuild', | 4722 'SYMROOT': '<(DEPTH)/xcodebuild', |
4719 }, | 4723 }, |
4720 } | 4724 } |
OLD | NEW |