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 'shared_files': [ | 7 'shared_files': [ |
8 'src/shared/AutoHandle.cpp', | 8 'src/shared/AutoHandle.cpp', |
9 'src/shared/Communication.cpp', | 9 'src/shared/Communication.cpp', |
10 'src/shared/Dictionary.cpp', | 10 'src/shared/Dictionary.cpp', |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 'targets': [{ | 39 'targets': [{ |
40 'target_name': 'AdblockPlusEngine', | 40 'target_name': 'AdblockPlusEngine', |
41 'type': 'executable', | 41 'type': 'executable', |
42 'dependencies': [ | 42 'dependencies': [ |
43 'libadblockplus/libadblockplus.gyp:libadblockplus', | 43 'libadblockplus/libadblockplus.gyp:libadblockplus', |
44 ], | 44 ], |
45 'sources': [ | 45 'sources': [ |
46 'src/engine/main.cpp', | 46 'src/engine/main.cpp', |
47 'src/engine/Debug.cpp', | 47 'src/engine/Debug.cpp', |
| 48 'src/engine/UpdateInstallDialog.cpp', |
48 'src/engine/Updater.cpp', | 49 'src/engine/Updater.cpp', |
49 'src/engine/engine.rc', | 50 'src/engine/engine.rc', |
50 '<@(shared_files)', | 51 '<@(shared_files)', |
51 ], | 52 ], |
52 'libraries': [ | 53 'libraries': [ |
53 '-ladvapi32', | 54 '-ladvapi32', |
54 '-lole32', | 55 '-lole32', |
55 '-luser32', | 56 '-luser32', |
56 '-lshell32', | 57 '-lshell32', |
57 '-lshlwapi', | 58 '-lshlwapi', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 160 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
160 }, | 161 }, |
161 'msvs_settings': { | 162 'msvs_settings': { |
162 'VCLinkerTool': { | 163 'VCLinkerTool': { |
163 'SubSystem': '1', # Console | 164 'SubSystem': '1', # Console |
164 'EntryPointSymbol': 'mainCRTStartup', | 165 'EntryPointSymbol': 'mainCRTStartup', |
165 }, | 166 }, |
166 }, | 167 }, |
167 }] | 168 }] |
168 } | 169 } |
OLD | NEW |