Chromium Code Reviews

Side by Side Diff: build/config/BUILDCONFIG.gn

Issue 965713002: Handle unpatched VS xtree header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # ============================================================================= 5 # =============================================================================
6 # BUILD FLAGS 6 # BUILD FLAGS
7 # ============================================================================= 7 # =============================================================================
8 # 8 #
9 # This block lists input arguments to the build, along with their default 9 # This block lists input arguments to the build, along with their default
10 # values. GN requires listing them explicitly so it can validate input and have 10 # values. GN requires listing them explicitly so it can validate input and have
(...skipping 338 matching lines...)
349 "//build/config/compiler:compiler_arm_fpu", 349 "//build/config/compiler:compiler_arm_fpu",
350 "//build/config/compiler:chromium_code", 350 "//build/config/compiler:chromium_code",
351 "//build/config/compiler:default_include_dirs", 351 "//build/config/compiler:default_include_dirs",
352 "//build/config/compiler:default_warnings", 352 "//build/config/compiler:default_warnings",
353 "//build/config/compiler:no_rtti", 353 "//build/config/compiler:no_rtti",
354 "//build/config/compiler:runtime_library", 354 "//build/config/compiler:runtime_library",
355 ] 355 ]
356 if (is_win) { 356 if (is_win) {
357 _native_compiler_configs += [ 357 _native_compiler_configs += [
358 "//build/config/win:lean_and_mean", 358 "//build/config/win:lean_and_mean",
359 "//build/config/win:msvs_xtree_unreachable_code",
brettw 2015/02/27 22:43:24 We only need to add stuff to this list of targets
359 "//build/config/win:nominmax", 360 "//build/config/win:nominmax",
360 "//build/config/win:sdk", 361 "//build/config/win:sdk",
361 "//build/config/win:unicode", 362 "//build/config/win:unicode",
362 "//build/config/win:winver", 363 "//build/config/win:winver",
363 ] 364 ]
364 } 365 }
365 if (is_posix) { 366 if (is_posix) {
366 _native_compiler_configs += [ 367 _native_compiler_configs += [
367 "//build/config/gcc:no_exceptions", 368 "//build/config/gcc:no_exceptions",
368 "//build/config/gcc:symbol_visibility_hidden", 369 "//build/config/gcc:symbol_visibility_hidden",
(...skipping 387 matching lines...)
756 } 757 }
757 if (defined(invoker.testonly)) { 758 if (defined(invoker.testonly)) {
758 testonly = invoker.testonly 759 testonly = invoker.testonly
759 } 760 }
760 if (defined(invoker.visibility)) { 761 if (defined(invoker.visibility)) {
761 visibility = invoker.visibility 762 visibility = invoker.visibility
762 } 763 }
763 } 764 }
764 } 765 }
765 } 766 }
OLDNEW
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine