| 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 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1973 # Enable Keystone auto-update support. | 1973 # Enable Keystone auto-update support. |
| 1974 'mac_keystone%': 1, | 1974 'mac_keystone%': 1, |
| 1975 }, { # else: branding!="Chrome" or buildtype!="Official" | 1975 }, { # else: branding!="Chrome" or buildtype!="Official" |
| 1976 'mac_breakpad_uploads%': 0, | 1976 'mac_breakpad_uploads%': 0, |
| 1977 'mac_breakpad%': 0, | 1977 'mac_breakpad%': 0, |
| 1978 'mac_keystone%': 0, | 1978 'mac_keystone%': 0, |
| 1979 }], | 1979 }], |
| 1980 ], | 1980 ], |
| 1981 }], # OS=="mac" or OS=="ios" | 1981 }], # OS=="mac" or OS=="ios" |
| 1982 ['OS=="win"', { | 1982 ['OS=="win"', { |
| 1983 'clang%': 1, |
| 1984 |
| 1983 'conditions': [ | 1985 'conditions': [ |
| 1984 # This is the architecture convention used in WinSDK paths. | 1986 # This is the architecture convention used in WinSDK paths. |
| 1985 ['target_arch=="ia32"', { | 1987 ['target_arch=="ia32"', { |
| 1986 'winsdk_arch%': 'x86', | 1988 'winsdk_arch%': 'x86', |
| 1987 },{ | 1989 },{ |
| 1988 'winsdk_arch%': '<(target_arch)', | 1990 'winsdk_arch%': '<(target_arch)', |
| 1989 }], | 1991 }], |
| 1990 ['component=="shared_library" or MSVS_VERSION == "2015"', { | 1992 ['component=="shared_library" or MSVS_VERSION == "2015"', { |
| 1991 # TODO(scottmg): The allocator shimming doesn't work on the 2015 CRT | 1993 # TODO(scottmg): The allocator shimming doesn't work on the 2015 CRT |
| 1992 # and we are hoping to be able to remove it if an additional feature | 1994 # and we are hoping to be able to remove it if an additional feature |
| (...skipping 4340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6333 # settings in target dicts. SYMROOT is a special case, because many other | 6335 # settings in target dicts. SYMROOT is a special case, because many other |
| 6334 # Xcode variables depend on it, including variables such as | 6336 # Xcode variables depend on it, including variables such as |
| 6335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6337 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6338 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6337 # files to appear (when present) in the UI as actual files and not red | 6339 # files to appear (when present) in the UI as actual files and not red |
| 6338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6340 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6339 # and therefore SYMROOT, needs to be set at the project level. | 6341 # and therefore SYMROOT, needs to be set at the project level. |
| 6340 'SYMROOT': '<(DEPTH)/xcodebuild', | 6342 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6341 }, | 6343 }, |
| 6342 } | 6344 } |
| OLD | NEW |