Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |