From 9ab5c27e4e33f27b47c424adb7da85da87cbf771 Mon Sep 17 00:00:00 2001 From: dpranke Date: Mon, 3 Nov 2014 16:04:03 -0800 Subject: [PATCH] Do not try to link chrome or app_shell in chromeos gn build. On ChromeOS, Chrome links in the remoting host, which isn't gn-ified yet. I'm not quite sure why app_shell doesn't work, but it might be the same issue. TBR=cmasone@chromium.org BUG=424337 Review URL: https://codereview.chromium.org/697223004 Cr-Original-Commit-Position: refs/heads/master@{#302524} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 6fc75b3f8718593090cca2b4a6cba0e84122d201 --- config/BUILDCONFIG.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/BUILDCONFIG.gn b/config/BUILDCONFIG.gn index 64878aa2f..c9ec4a2f8 100644 --- a/config/BUILDCONFIG.gn +++ b/config/BUILDCONFIG.gn @@ -32,7 +32,7 @@ declare_args() { # Set to true when compiling with the Clang compiler. Typically this is used # to configure warnings. - is_clang = (os == "mac" || os == "ios" || os == "linux") + is_clang = (os == "mac" || os == "ios" || os == "linux" || os == "chromeos") # Forces a 64-bit build on Windows. Does nothing on other platforms. Normally # we build 32-bit on Windows regardless of the current host OS bit depth.