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

Unified Diff: chrome/chrome_dll_bundle.gypi

Issue 12441004: Mac x86_64: package nacl_irt_x86_64.nexe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_dll_bundle.gypi
===================================================================
--- chrome/chrome_dll_bundle.gypi (revision 186277)
+++ chrome/chrome_dll_bundle.gypi (working copy)
@@ -157,10 +157,18 @@
['disable_nacl!=1', {
'files': [
'<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.plugin',
- # We leave out the x86-64 IRT nexe because we only
- # support x86-32 NaCl on Mac OS X.
- '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
],
+ 'conditions': [
+ ['target_arch=="x64"', {
+ 'files': [
+ '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
+ ],
+ }, {
+ 'files': [
+ '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
+ ],
+ }],
+ ],
}],
],
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698