Index: chrome/BUILD.gn |
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn |
index 36cad983fc6a72f38b796c113764bedccb0574d0..806701dfd5276aa93b1703f41fa16bcfac06e90b 100644 |
--- a/chrome/BUILD.gn |
+++ b/chrome/BUILD.gn |
@@ -814,7 +814,11 @@ if (is_win) { |
public_deps = [] |
if (enable_nacl) { |
- sources += [ "$root_out_dir/nacl_irt_x86_64.nexe" ] |
+ if (current_cpu == "x86") { |
+ sources += [ "$root_out_dir/nacl_irt_x86_32.nexe" ] |
+ } else if (current_cpu == "x64") { |
+ sources += [ "$root_out_dir/nacl_irt_x86_64.nexe" ] |
+ } |
public_deps += [ "//ppapi/native_client:irt" ] |
} |
} |