Chromium Code Reviews| Index: remoting/host/BUILD.gn |
| diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn |
| index c3ade73772302a380539903db4557e2e2633c7c1..cf1c9d143394109e0d61c4ec263b70836c6701ca 100644 |
| --- a/remoting/host/BUILD.gn |
| +++ b/remoting/host/BUILD.gn |
| @@ -1642,7 +1642,7 @@ if (enable_me2me_host) { |
| if (is_win && is_chrome_branded) { |
| # We do not release a 64 bits binary. So to avoid any potential |
| # misunderstanding, we only build 32 bits MSI file. |
| - if (target_cpu == "x86") { |
| + if (is_component_build && target_cpu == "x86") { |
|
joedow
2016/08/15 23:08:53
Shouldn't this be:
if (!is_component_build && targ
Hzj_jie
2016/08/15 23:12:17
Faint.
|
| # The script uses "ia32" instead of "x86". |
| msi_script_arch = "ia32" |