| 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', | 
| @@ -206,7 +208,6 @@ | 
| 'sources': [ | 
| 'test/CommunicationTest.cpp', | 
| 'test/DictionaryTest.cpp', | 
| -      'test/RegistryTest.cpp', | 
| 'test/UtilTest.cpp', | 
| ], | 
| 'defines': ['WINVER=0x0501'], | 
|  |