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 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 ['component=="shared_library"', { | 1948 ['component=="shared_library"', { |
1949 'win_use_allocator_shim%': 0, | 1949 'win_use_allocator_shim%': 0, |
1950 },{ | 1950 },{ |
1951 # Turn on multiple dll by default on Windows when in static_library. | 1951 # Turn on multiple dll by default on Windows when in static_library. |
1952 'chrome_multiple_dll%': 1, | 1952 'chrome_multiple_dll%': 1, |
1953 }], | 1953 }], |
1954 ['asan==1 or syzyasan==1', { | 1954 ['asan==1 or syzyasan==1', { |
1955 'win_use_allocator_shim%': 0, | 1955 'win_use_allocator_shim%': 0, |
1956 }], | 1956 }], |
1957 ['syzyasan==1', { | 1957 ['syzyasan==1', { |
1958 'kasko%': 1, | 1958 # Uncomment the following line to enable Kasko for |
| 1959 # SyzyASAN-instrumented releases. |
| 1960 # 'kasko%': 1, |
1959 }], | 1961 }], |
1960 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', { | 1962 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', { |
1961 # Only enabled by default for ninja because it's buggy in VS. | 1963 # Only enabled by default for ninja because it's buggy in VS. |
1962 # Not enabled for component=static_library because some targets | 1964 # Not enabled for component=static_library because some targets |
1963 # are too large and the toolchain fails due to the size of the | 1965 # are too large and the toolchain fails due to the size of the |
1964 # .obj files. | 1966 # .obj files. |
1965 'incremental_chrome_dll%': 1, | 1967 'incremental_chrome_dll%': 1, |
1966 }], | 1968 }], |
1967 # Don't do incremental linking for large modules on 32-bit or when | 1969 # Don't do incremental linking for large modules on 32-bit or when |
1968 # component=static_library as the toolchain fails due to the size of | 1970 # component=static_library as the toolchain fails due to the size of |
(...skipping 4063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6032 # settings in target dicts. SYMROOT is a special case, because many other | 6034 # settings in target dicts. SYMROOT is a special case, because many other |
6033 # Xcode variables depend on it, including variables such as | 6035 # Xcode variables depend on it, including variables such as |
6034 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6036 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6035 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6037 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6036 # files to appear (when present) in the UI as actual files and not red | 6038 # files to appear (when present) in the UI as actual files and not red |
6037 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6039 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6038 # and therefore SYMROOT, needs to be set at the project level. | 6040 # and therefore SYMROOT, needs to be set at the project level. |
6039 'SYMROOT': '<(DEPTH)/xcodebuild', | 6041 'SYMROOT': '<(DEPTH)/xcodebuild', |
6040 }, | 6042 }, |
6041 } | 6043 } |
OLD | NEW |