OLD | NEW |
1 { | 1 { |
2 'includes': ['defaults.gypi'], | 2 'includes': ['defaults.gypi'], |
3 | 3 |
4 'variables': { | 4 'variables': { |
5 'build_type%': 'devbuild', | 5 'build_type%': 'devbuild', |
6 'build_version%': '', | 6 'build_version%': '', |
7 }, | 7 }, |
8 | 8 |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 20 matching lines...) Expand all Loading... |
31 }, | 31 }, |
32 | 32 |
33 'targets': [{ | 33 'targets': [{ |
34 'target_name': 'shared', | 34 'target_name': 'shared', |
35 'type': 'static_library', | 35 'type': 'static_library', |
36 'sources': [ | 36 'sources': [ |
37 'src/shared/AutoHandle.cpp', | 37 'src/shared/AutoHandle.cpp', |
38 'src/shared/Communication.cpp', | 38 'src/shared/Communication.cpp', |
39 'src/shared/Dictionary.cpp', | 39 'src/shared/Dictionary.cpp', |
40 'src/shared/Utils.cpp', | 40 'src/shared/Utils.cpp', |
| 41 'src/shared/Registry.h', |
| 42 'src/shared/Registry.cpp', |
| 43 'src/shared/IE_version.h', |
| 44 'src/shared/IE_version.cpp', |
41 ] | 45 ] |
42 }, | 46 }, |
43 | 47 |
44 { | 48 { |
45 'target_name': 'AdblockPlusEngine', | 49 'target_name': 'AdblockPlusEngine', |
46 'type': 'executable', | 50 'type': 'executable', |
47 'dependencies': [ | 51 'dependencies': [ |
48 'shared', | 52 'shared', |
49 'libadblockplus/libadblockplus.gyp:libadblockplus', | 53 'libadblockplus/libadblockplus.gyp:libadblockplus', |
50 ], | 54 ], |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 { | 162 { |
159 'target_name': 'tests', | 163 'target_name': 'tests', |
160 'type': 'executable', | 164 'type': 'executable', |
161 'dependencies': [ | 165 'dependencies': [ |
162 'shared', | 166 'shared', |
163 'libadblockplus/third_party/googletest.gyp:googletest_main', | 167 'libadblockplus/third_party/googletest.gyp:googletest_main', |
164 ], | 168 ], |
165 'sources': [ | 169 'sources': [ |
166 'test/CommunicationTest.cpp', | 170 'test/CommunicationTest.cpp', |
167 'test/DictionaryTest.cpp', | 171 'test/DictionaryTest.cpp', |
| 172 'test/RegistryTest.cpp', |
168 ], | 173 ], |
169 'defines': ['WINVER=0x0501'], | 174 'defines': ['WINVER=0x0501'], |
170 'link_settings': { | 175 'link_settings': { |
171 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 176 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
172 }, | 177 }, |
173 'msvs_settings': { | 178 'msvs_settings': { |
174 'VCLinkerTool': { | 179 'VCLinkerTool': { |
175 'SubSystem': '1', # Console | 180 'SubSystem': '1', # Console |
176 'EntryPointSymbol': 'mainCRTStartup', | 181 'EntryPointSymbol': 'mainCRTStartup', |
177 }, | 182 }, |
178 }, | 183 }, |
179 }] | 184 }] |
180 } | 185 } |
OLD | NEW |