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

Unified Diff: adblockplus.gyp

Issue 10786016: Moved all pipe functionality into a self-containing Communication::Pipe class (Closed)
Patch Set: Created May 31, 2013, 11:48 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 | « no previous file | createsolution.bat » ('j') | src/engine/main.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplus.gyp
===================================================================
new file mode 100644
--- /dev/null
+++ b/adblockplus.gyp
@@ -0,0 +1,26 @@
+{
+ 'includes': ['libadblockplus/common.gypi', 'libadblockplus/third_party/googletest.gyp'],
+
+ 'targets': [{
+ 'target_name': 'tests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'googletest_main',
+ ],
+ 'sources': [
+ 'src/shared/AutoHandle.cpp',
+ 'src/shared/Communication.cpp',
+ 'test/CommunicationTest.cpp',
+ ],
+ 'defines': ['WINVER=0x0501'],
+ 'link_settings': {
+ 'libraries': ['-ladvapi32'],
+ },
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1', # Console
+ 'EntryPointSymbol': 'mainCRTStartup',
+ },
+ },
+ }]
+}
« no previous file with comments | « no previous file | createsolution.bat » ('j') | src/engine/main.cpp » ('J')

Powered by Google App Engine
This is Rietveld