Chromium Code Reviews| Index: build/config/clang/clang.gni |
| diff --git a/build/config/clang/clang.gni b/build/config/clang/clang.gni |
| index 3b2d76fbe6af7e41ad6d3d309a26fb439f86d8e1..54d8570935d78ef379899f61d3a5ff3508232724 100644 |
| --- a/build/config/clang/clang.gni |
| +++ b/build/config/clang/clang.gni |
| @@ -5,5 +5,5 @@ |
| declare_args() { |
| # Indicates if the build should use the Chrome-specific plugins for enforcing |
| # coding guidelines, etc. Only used when compiling with Clang. |
| - clang_use_chrome_plugins = is_clang |
| + clang_use_chrome_plugins = is_clang && os != "nacl" |
|
brettw
2014/12/05 21:23:44
I'd use "|| !is_nacl" instead here.
Dirk Pranke
2014/12/05 21:28:36
really? I think what Nick wrote is clearer. Seems
|
| } |