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

Side by Side Diff: build/config/libc++/libc++.gni

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
OLDNEW
(Empty)
1 import("//build/config/sanitizers/sanitizers.gni")
2
3 if (current_toolchain != default_toolchain) {
4 use_custom_libcxx = false
5 }
6
7 declare_args() {
8 # Use libc++ (buildtools/third_party/libc++ and
9 # buildtools/third_party/libc++abi) instead of stdlibc++ as standard
10 # library.
11 use_custom_libcxx =
12 (is_asan && is_linux && !is_chromeos) || is_tsan || is_msan || is_ubsan ||
13 is_ubsan_security || (use_libfuzzer && !is_mac) || use_afl
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698