| 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 2227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 ['host_arch=="ia32"', { | 2238 ['host_arch=="ia32"', { |
| 2239 # 32-bit Clang is unsupported. It may not build. Put your 32-bit | 2239 # 32-bit Clang is unsupported. It may not build. Put your 32-bit |
| 2240 # Clang in this directory at your own risk if needed for some | 2240 # Clang in this directory at your own risk if needed for some |
| 2241 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory | 2241 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory |
| 2242 # usage). Any failure by this compiler should not close the tree. | 2242 # usage). Any failure by this compiler should not close the tree. |
| 2243 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32', | 2243 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32', |
| 2244 }], | 2244 }], |
| 2245 ], | 2245 ], |
| 2246 }], | 2246 }], |
| 2247 | 2247 |
| 2248 ['OS=="win"', { | |
| 2249 # The Blink GC plugin doesn't currently work on Windows. | |
| 2250 # TODO(hans): One day, this will work. (crbug.com/82385) | |
| 2251 'blink_gc_plugin%': 0, | |
| 2252 }], | |
| 2253 | |
| 2254 # On valgrind bots, override the optimizer settings so we don't inline too | 2248 # On valgrind bots, override the optimizer settings so we don't inline too |
| 2255 # much and make the stacks harder to figure out. | 2249 # much and make the stacks harder to figure out. |
| 2256 # | 2250 # |
| 2257 # TODO(rnk): Kill off variables that no one else uses and just implement | 2251 # TODO(rnk): Kill off variables that no one else uses and just implement |
| 2258 # them under a build_for_tool== condition. | 2252 # them under a build_for_tool== condition. |
| 2259 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', { | 2253 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', { |
| 2260 # gcc flags | 2254 # gcc flags |
| 2261 'mac_debug_optimization': '1', | 2255 'mac_debug_optimization': '1', |
| 2262 'mac_release_optimization': '1', | 2256 'mac_release_optimization': '1', |
| 2263 'release_optimize': '1', | 2257 'release_optimize': '1', |
| (...skipping 3923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6187 # settings in target dicts. SYMROOT is a special case, because many other | 6181 # settings in target dicts. SYMROOT is a special case, because many other |
| 6188 # Xcode variables depend on it, including variables such as | 6182 # Xcode variables depend on it, including variables such as |
| 6189 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6183 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6190 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6184 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6191 # files to appear (when present) in the UI as actual files and not red | 6185 # files to appear (when present) in the UI as actual files and not red |
| 6192 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6186 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6193 # and therefore SYMROOT, needs to be set at the project level. | 6187 # and therefore SYMROOT, needs to be set at the project level. |
| 6194 'SYMROOT': '<(DEPTH)/xcodebuild', | 6188 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6195 }, | 6189 }, |
| 6196 } | 6190 } |
| OLD | NEW |