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 2189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2200 'AdditionalLibraryDirectories': | 2200 'AdditionalLibraryDirectories': |
2201 ['<(windows_sdk_path)/Lib/win8/um/x64'], | 2201 ['<(windows_sdk_path)/Lib/win8/um/x64'], |
2202 }, | 2202 }, |
2203 'VCLibrarianTool': { | 2203 'VCLibrarianTool': { |
2204 'AdditionalLibraryDirectories!': | 2204 'AdditionalLibraryDirectories!': |
2205 ['<(windows_sdk_path)/Lib/win8/um/x86'], | 2205 ['<(windows_sdk_path)/Lib/win8/um/x86'], |
2206 'AdditionalLibraryDirectories': | 2206 'AdditionalLibraryDirectories': |
2207 ['<(windows_sdk_path)/Lib/win8/um/x64'], | 2207 ['<(windows_sdk_path)/Lib/win8/um/x64'], |
2208 }, | 2208 }, |
2209 }, | 2209 }, |
2210 'defines': [ | |
2211 # Not sure if tcmalloc works on 64-bit Windows. | |
2212 'NO_TCMALLOC', | |
2213 ], | |
2214 }, | 2210 }, |
2215 'Debug_Base': { | 2211 'Debug_Base': { |
2216 'abstract': 1, | 2212 'abstract': 1, |
2217 'defines': [ | 2213 'defines': [ |
2218 'DYNAMIC_ANNOTATIONS_ENABLED=1', | 2214 'DYNAMIC_ANNOTATIONS_ENABLED=1', |
2219 'WTF_USE_DYNAMIC_ANNOTATIONS=1', | 2215 'WTF_USE_DYNAMIC_ANNOTATIONS=1', |
2220 ], | 2216 ], |
2221 'xcode_settings': { | 2217 'xcode_settings': { |
2222 'COPY_PHASE_STRIP': 'NO', | 2218 'COPY_PHASE_STRIP': 'NO', |
2223 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)', | 2219 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)', |
(...skipping 1830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4054 # settings in target dicts. SYMROOT is a special case, because many other | 4050 # settings in target dicts. SYMROOT is a special case, because many other |
4055 # Xcode variables depend on it, including variables such as | 4051 # Xcode variables depend on it, including variables such as |
4056 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4052 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4057 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4053 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4058 # files to appear (when present) in the UI as actual files and not red | 4054 # files to appear (when present) in the UI as actual files and not red |
4059 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4055 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4060 # and therefore SYMROOT, needs to be set at the project level. | 4056 # and therefore SYMROOT, needs to be set at the project level. |
4061 'SYMROOT': '<(DEPTH)/xcodebuild', | 4057 'SYMROOT': '<(DEPTH)/xcodebuild', |
4062 }, | 4058 }, |
4063 } | 4059 } |
OLD | NEW |