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

Unified Diff: adblockplus.gyp

Issue 6216090891845632: Issue #404 - Create common library shared between plugin/engine and installer (Closed)
Patch Set: Created Jan. 9, 2015, 8:07 p.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 | common/common.gypi » ('j') | common/common.gypi » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplus.gyp
===================================================================
--- a/adblockplus.gyp
+++ b/adblockplus.gyp
@@ -1,5 +1,8 @@
{
- 'includes': ['defaults.gypi'],
+ 'includes': [
+ 'defaults.gypi',
+ 'common/common.gypi',
+ ],
'variables': {
'build_type%': 'devbuild',
@@ -33,18 +36,17 @@
'targets': [{
'target_name': 'shared',
'type': 'static_library',
+ 'dependencies': [
+ 'common',
+ ],
'sources': [
'src/shared/AutoHandle.cpp',
'src/shared/Communication.cpp',
'src/shared/Dictionary.cpp',
'src/shared/Utils.cpp',
- 'src/shared/Registry.h',
- 'src/shared/Registry.cpp',
- 'src/shared/IE_version.h',
- 'src/shared/IE_version.cpp',
]
},
-
+
{
'target_name': 'AdblockPlusEngine',
'type': 'executable',
@@ -209,7 +211,6 @@
'sources': [
'test/CommunicationTest.cpp',
'test/DictionaryTest.cpp',
- 'test/RegistryTest.cpp',
],
'defines': ['WINVER=0x0501'],
'link_settings': {
« no previous file with comments | « no previous file | common/common.gypi » ('j') | common/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld