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

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

Issue 2931983003: Move libc++ configs and flags out of //build/config/sanitizers (Closed)
Patch Set: Created 3 years, 6 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 | build/config/BUILDCONFIG.gn » ('j') | build/config/BUILDCONFIG.gn » ('J')
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 import("//build/config/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/chromecast_build.gni") 7 import("//build/config/chromecast_build.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/dcheck_always_on.gni") 9 import("//build/config/dcheck_always_on.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
11 import("//build/config/libc++/libc++.gni")
11 import("//build/config/pch.gni") 12 import("//build/config/pch.gni")
12 import("//build/config/sanitizers/sanitizers.gni") 13 import("//build/config/sanitizers/sanitizers.gni")
13 import("//build/config/ui.gni") 14 import("//build/config/ui.gni")
14 import("//build/toolchain/goma.gni") 15 import("//build/toolchain/goma.gni")
15 16
16 declare_args() { 17 declare_args() {
17 # When set (the default) enables C++ iterator debugging in debug builds. 18 # When set (the default) enables C++ iterator debugging in debug builds.
18 # Iterator debugging is always off in release builds (technically, this flag 19 # Iterator debugging is always off in release builds (technically, this flag
19 # affects the "debug" config, which is always available but applied by 20 # affects the "debug" config, which is always available but applied by
20 # default only in debug builds). 21 # default only in debug builds).
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 # variant for each language used in the target). 376 # variant for each language used in the target).
376 precompiled_source = "//build/precompile.cc" 377 precompiled_source = "//build/precompile.cc"
377 378
378 # Force include the header. 379 # Force include the header.
379 cflags = [ "/FI$precompiled_header" ] 380 cflags = [ "/FI$precompiled_header" ]
380 } else if (is_mac) { 381 } else if (is_mac) {
381 precompiled_source = "//build/precompile.h" 382 precompiled_source = "//build/precompile.h"
382 } 383 }
383 } 384 }
384 } 385 }
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILDCONFIG.gn » ('j') | build/config/BUILDCONFIG.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698