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