Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Unified Diff: chrome/BUILD.gn

Issue 2353683003: [NaCl SDK] Re-enable 32-bit sel_ldr build for mac (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
}
}
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698