Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/Plugin.cpp

Issue 10945039: Switch to gyp (Closed)
Patch Set: This version actually compiles, needs some testing however. build_release.py and installer still ne… Created June 21, 2013, 7:30 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/plugin/Plugin.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/Plugin.cpp
===================================================================
--- a/src/plugin/Plugin.cpp
+++ b/src/plugin/Plugin.cpp
@@ -1,12 +1,16 @@
#include "PluginStdAfx.h"
#include "Plugin.h"
-#include "../../build/AdblockPlus_i.c"
+#ifdef _WIN64
+#include "../../build/x64/AdblockPlus_i.c"
Felix Dahlke 2013/06/21 14:01:01 What exactly is this? Worth a comment I think. Al
Wladimir Palant 2013/06/21 14:23:54 It's some code generated automatically from Adbloc
Oleksandr 2013/06/25 11:06:44 It is the output of MIDL compiler. http://msdn.mic
+#else
+#include "../../build/ia32/AdblockPlus_i.c"
+#endif
#include "PluginClass.h"
#include "PluginClient.h"
#include "PluginSystem.h"
#include "PluginSettings.h"
#include "PluginMimeFilterClient.h"
#include "Msiquery.h"
« no previous file with comments | « src/plugin/Plugin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld