| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'src/plugin/PluginUtil.h', | 133 'src/plugin/PluginUtil.h', |
| 134 'src/plugin/PluginWbPassThrough.cpp', | 134 'src/plugin/PluginWbPassThrough.cpp', |
| 135 'src/plugin/PluginWbPassThrough.h', | 135 'src/plugin/PluginWbPassThrough.h', |
| 136 'src/plugin/ProtocolCF.h', | 136 'src/plugin/ProtocolCF.h', |
| 137 'src/plugin/ProtocolCF.inl', | 137 'src/plugin/ProtocolCF.inl', |
| 138 'src/plugin/ProtocolImpl.h', | 138 'src/plugin/ProtocolImpl.h', |
| 139 'src/plugin/ProtocolImpl.inl', | 139 'src/plugin/ProtocolImpl.inl', |
| 140 'src/plugin/Resource.h', | 140 'src/plugin/Resource.h', |
| 141 'src/plugin/SinkPolicy.h', | 141 'src/plugin/SinkPolicy.h', |
| 142 'src/plugin/SinkPolicy.inl', | 142 'src/plugin/SinkPolicy.inl', |
| 143 'src/plugin/WebBrowserEventsListener.h', |
| 144 'src/plugin/WebBrowserEventsListener.cpp', |
| 143 ], | 145 ], |
| 144 'include_dirs': [ | 146 'include_dirs': [ |
| 145 '$(WindowsSDK_IncludePath)', | 147 '$(WindowsSDK_IncludePath)', |
| 146 '$(VCInstallDir)atlmfc/include', | 148 '$(VCInstallDir)atlmfc/include', |
| 147 '$(WINDDKDIR)/inc/atl71', | 149 '$(WINDDKDIR)/inc/atl71', |
| 148 ], | 150 ], |
| 149 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL | 151 # See "Adding Visual Style Support to an Extension, Plug-in, MMC Snap-in or
a DLL |
| 150 # That Is Brought into a Process" on the link here: | 152 # That Is Brought into a Process" on the link here: |
| 151 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests | 153 # http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175%28v=vs.85
%29.aspx#using_manifests |
| 152 'defines': ['ISOLATION_AWARE_ENABLED'], | 154 'defines': ['ISOLATION_AWARE_ENABLED'], |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 213 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
| 212 }, | 214 }, |
| 213 'msvs_settings': { | 215 'msvs_settings': { |
| 214 'VCLinkerTool': { | 216 'VCLinkerTool': { |
| 215 'SubSystem': '1', # Console | 217 'SubSystem': '1', # Console |
| 216 'EntryPointSymbol': 'mainCRTStartup', | 218 'EntryPointSymbol': 'mainCRTStartup', |
| 217 }, | 219 }, |
| 218 }, | 220 }, |
| 219 }] | 221 }] |
| 220 } | 222 } |
| OLD | NEW |