| Left: | ||
| Right: |
| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 '$(WINDDKDIR)/inc/atl71', | 107 '$(WINDDKDIR)/inc/atl71', |
| 108 ], | 108 ], |
| 109 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or a DLL | 109 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or a DLL |
| 110 # That Is Brought into a Process" on the link here: | 110 # That Is Brought into a Process" on the link here: |
| 111 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85 %29.aspx#using_manifests | 111 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85 %29.aspx#using_manifests |
| 112 'defines': ['PRODUCT_ADBLOCKPLUS', 'ISOLATION_AWARE_ENABLED'], | 112 'defines': ['PRODUCT_ADBLOCKPLUS', 'ISOLATION_AWARE_ENABLED'], |
| 113 'libraries': [ | 113 'libraries': [ |
| 114 '-lwinhttp', | 114 '-lwinhttp', |
| 115 '-lshell32', | 115 '-lshell32', |
| 116 '-lComctl32', | 116 '-lComctl32', |
| 117 '-lGdi32', | |
|
Felix Dahlke
2014/07/21 09:38:22
Indentation is off here
Eric
2014/07/22 14:15:32
I've been burned by indentation in Visual Studio b
| |
| 117 ], | 118 ], |
| 118 'configurations': { | 119 'configurations': { |
| 119 # 'libraries' is not allowed under 'configurations' :-( | 120 # 'libraries' is not allowed under 'configurations' :-( |
| 120 'Debug': { | 121 'Debug': { |
| 121 'msvs_settings': { | 122 'msvs_settings': { |
| 122 'VCLinkerTool': { | 123 'VCLinkerTool': { |
| 123 'AdditionalDependencies': ['atlsd.lib'], | 124 'AdditionalDependencies': ['atlsd.lib'], |
| 124 }, | 125 }, |
| 125 }, | 126 }, |
| 126 }, | 127 }, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 170 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 171 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
| 171 }, | 172 }, |
| 172 'msvs_settings': { | 173 'msvs_settings': { |
| 173 'VCLinkerTool': { | 174 'VCLinkerTool': { |
| 174 'SubSystem': '1', # Console | 175 'SubSystem': '1', # Console |
| 175 'EntryPointSymbol': 'mainCRTStartup', | 176 'EntryPointSymbol': 'mainCRTStartup', |
| 176 }, | 177 }, |
| 177 }, | 178 }, |
| 178 }] | 179 }] |
| 179 } | 180 } |
| OLD | NEW |