Chromium Code Reviews| Index: build/config/compiler/BUILD.gn |
| diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn |
| index 53efff0a3358a086809adac28fe0c2088d3e53cc..a8c2e4b385670e6ac485d2b82c2101771872efc5 100644 |
| --- a/build/config/compiler/BUILD.gn |
| +++ b/build/config/compiler/BUILD.gn |
| @@ -361,7 +361,7 @@ config("compiler") { |
| # clang-cl (used if is_win) doesn't expose this flag. |
| # Currently disabled for nacl since its toolchain lacks this flag (too old). |
| # TODO(zforman): Once nacl's toolchain is updated, remove check. |
| - if (is_clang && !is_win && !is_nacl) { |
| + if (is_clang && !is_win && !is_nacl && !is_ios && !is_mac) { |
|
brettw
2016/04/28 21:16:17
Seems like we should just change this to:
if (is
sdefresne
2016/04/30 11:25:02
Done.
|
| absolute_path = rebase_path("//.") |
| cflags += [ "-fdebug-prefix-map=$absolute_path=." ] |
| } |