Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: build/common.gypi

Issue 1136943002: clang/win: Enable oilpan plugin on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698