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

Unified Diff: chrome/nacl/sel_main.cc

Issue 384068: gyp changes - add support for building Native Client for 64-bit Windows... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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 | « chrome/nacl.gypi ('k') | webkit/glue/webkit_glue_dummy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/nacl/sel_main.cc
===================================================================
--- chrome/nacl/sel_main.cc (revision 35303)
+++ chrome/nacl/sel_main.cc (working copy)
@@ -8,6 +8,10 @@
#include <crt_externs.h>
#endif
+#ifdef _WIN64 /* TODO(gregoryd): remove this when win64 issues are fixed */
+#define NACL_NO_INLINE
+#endif
+
EXTERN_C_BEGIN
#include "native_client/src/shared/platform/nacl_sync.h"
#include "native_client/src/shared/platform/nacl_sync_checked.h"
@@ -50,6 +54,10 @@
}
int SelMain(const int desc, const NaClHandle handle) {
+#ifdef _WIN64
+ /* TODO(gregoryd): remove this when NaCl's service_runtime supports Win64 */
+ return 0;
+#else
char *av[1];
int ac = 1;
@@ -196,5 +204,6 @@
NaClAllModulesFini();
return ret_code;
+#endif
}
« no previous file with comments | « chrome/nacl.gypi ('k') | webkit/glue/webkit_glue_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698