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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 # but that doesn't work as we'd like. | 886 # but that doesn't work as we'd like. |
887 'msvs_debug_link_incremental%': '2', | 887 'msvs_debug_link_incremental%': '2', |
888 | 888 |
889 # Needed for some of the largest modules. | 889 # Needed for some of the largest modules. |
890 'msvs_debug_link_nonincremental%': '1', | 890 'msvs_debug_link_nonincremental%': '1', |
891 | 891 |
892 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows | 892 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows |
893 # to get incremental linking to be faster in debug builds. | 893 # to get incremental linking to be faster in debug builds. |
894 'incremental_chrome_dll%': '0', | 894 'incremental_chrome_dll%': '0', |
895 | 895 |
| 896 # Experimental split of chrome.dll into two separate subparts on Windows. |
| 897 'chrome_split_dll%': '0', |
| 898 |
896 # The default settings for third party code for treating | 899 # The default settings for third party code for treating |
897 # warnings-as-errors. Ideally, this would not be required, however there | 900 # warnings-as-errors. Ideally, this would not be required, however there |
898 # is some third party code that takes a long time to fix/roll. So, this | 901 # is some third party code that takes a long time to fix/roll. So, this |
899 # flag allows us to have warnings as errors in general to prevent | 902 # flag allows us to have warnings as errors in general to prevent |
900 # regressions in most modules, while working on the bits that are | 903 # regressions in most modules, while working on the bits that are |
901 # remaining. | 904 # remaining. |
902 'win_third_party_warn_as_error%': 'true', | 905 'win_third_party_warn_as_error%': 'true', |
903 | 906 |
904 # This is the location of the sandbox binary. Chrome looks for this before | 907 # This is the location of the sandbox binary. Chrome looks for this before |
905 # running the zygote process. If found, and SUID, it will be used to | 908 # running the zygote process. If found, and SUID, it will be used to |
(...skipping 3457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4363 # settings in target dicts. SYMROOT is a special case, because many other | 4366 # settings in target dicts. SYMROOT is a special case, because many other |
4364 # Xcode variables depend on it, including variables such as | 4367 # Xcode variables depend on it, including variables such as |
4365 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4368 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4366 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4369 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4367 # files to appear (when present) in the UI as actual files and not red | 4370 # files to appear (when present) in the UI as actual files and not red |
4368 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4371 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4369 # and therefore SYMROOT, needs to be set at the project level. | 4372 # and therefore SYMROOT, needs to be set at the project level. |
4370 'SYMROOT': '<(DEPTH)/xcodebuild', | 4373 'SYMROOT': '<(DEPTH)/xcodebuild', |
4371 }, | 4374 }, |
4372 } | 4375 } |
OLD | NEW |