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

Side by Side Diff: build/config/libc++/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
OLDNEW
(Empty)
1 import("//build/config/libc++/libc++.gni")
brettw 2017/06/12 17:55:18 This file and the next one need the copyright head
Tom Anderson 2017/06/16 20:49:50 Done.
2
3 config("libc++flags") {
4 if (use_custom_libcxx) {
5 prefix = "//buildtools/third_party"
6 include = "trunk/include"
7 cflags_cc = [
8 "-nostdinc++",
9 "-isystem" + rebase_path("$prefix/libc++/$include", root_build_dir),
10 "-isystem" + rebase_path("$prefix/libc++abi/$include", root_build_dir),
11 ]
12 }
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698