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

Unified Diff: runtime/platform/globals.h

Issue 591213003: Fix dartium windows build (broke after reecnt chrome 38 roll) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/platform/globals.h
===================================================================
--- runtime/platform/globals.h (revision 40563)
+++ runtime/platform/globals.h (working copy)
@@ -13,15 +13,39 @@
#if defined(_WIN32)
// Cut down on the amount of stuff that gets included via windows.h.
+#if !defined(WIN32_LEAN_AND_MEAN)
#define WIN32_LEAN_AND_MEAN
+#endif
+
+#if !defined(NOMINMAX)
#define NOMINMAX
+#endif
+
+#if !defined(NOKERNEL)
#define NOKERNEL
+#endif
+
+#if !defined(NOUSER)
#define NOUSER
+#endif
+
+#if !defined(NOSERVICE)
#define NOSERVICE
+#endif
+
+#if !defined(NOSOUND)
#define NOSOUND
+#endif
+
+#if !defined(NOMCX)
#define NOMCX
+#endif
+
+#if !defined(UNICODE)
#define _UNICODE
#define UNICODE
+#endif
+
#include <windows.h>
#include <winsock2.h>
#include <Rpc.h>
« 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