| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'setupapi.dll', | 214 'setupapi.dll', |
| 215 'urlmon.dll', | 215 'urlmon.dll', |
| 216 'winhttp.dll', | 216 'winhttp.dll', |
| 217 'wininet.dll', | 217 'wininet.dll', |
| 218 'winspool.drv', | 218 'winspool.drv', |
| 219 'ws2_32.dll', | 219 'ws2_32.dll', |
| 220 'wsock32.dll', | 220 'wsock32.dll', |
| 221 ], | 221 ], |
| 222 }, | 222 }, |
| 223 'VCManifestTool': { | 223 'VCManifestTool': { |
| 224 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.man
ifest', | 224 'AdditionalManifestFiles': [ |
| 225 '$(ProjectDir)\\app\\chrome.dll.manifest', |
| 226 ], |
| 225 }, | 227 }, |
| 226 }, | 228 }, |
| 227 }], | 229 }], |
| 228 ['chrome_multiple_dll==1', { | 230 ['chrome_multiple_dll==1', { |
| 229 'defines': [ | 231 'defines': [ |
| 230 'CHROME_MULTIPLE_DLL_BROWSER', | 232 'CHROME_MULTIPLE_DLL_BROWSER', |
| 231 ], | 233 ], |
| 232 }, { | 234 }, { |
| 233 'dependencies': [ | 235 'dependencies': [ |
| 234 '<@(chromium_child_dependencies)', | 236 '<@(chromium_child_dependencies)', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 'sources': [ | 356 'sources': [ |
| 355 'app/chrome_main.cc', | 357 'app/chrome_main.cc', |
| 356 'app/chrome_main_delegate.cc', | 358 'app/chrome_main_delegate.cc', |
| 357 'app/chrome_main_delegate.h', | 359 'app/chrome_main_delegate.h', |
| 358 ], | 360 ], |
| 359 }, # target chrome_child_dll | 361 }, # target chrome_child_dll |
| 360 ], | 362 ], |
| 361 }], | 363 }], |
| 362 ], | 364 ], |
| 363 } | 365 } |
| OLD | NEW |