OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 3975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3986 '../webkit/activex_shim/activex_shim.gyp:*', | 3986 '../webkit/activex_shim/activex_shim.gyp:*', |
3987 '../webkit/activex_shim_dll/activex_shim_dll.gyp:*', | 3987 '../webkit/activex_shim_dll/activex_shim_dll.gyp:*', |
3988 '../v8/tools/gyp/v8.gyp:v8_shell', | 3988 '../v8/tools/gyp/v8.gyp:v8_shell', |
3989 ], | 3989 ], |
3990 }, | 3990 }, |
3991 { | 3991 { |
3992 'target_name': 'chrome_dll', | 3992 'target_name': 'chrome_dll', |
3993 'type': 'shared_library', | 3993 'type': 'shared_library', |
3994 'product_name': 'chrome', | 3994 'product_name': 'chrome', |
3995 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', | 3995 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', |
| 3996 'msvs_existing_vcproj': 'app/chrome_dll.vcproj', |
3996 'include_dirs': [ | 3997 'include_dirs': [ |
3997 'third_party/wtl/include', | 3998 'third_party/wtl/include', |
3998 ], | 3999 ], |
3999 'dependencies': [ | 4000 'dependencies': [ |
4000 # On Windows, link the dependencies (libraries) that make | 4001 # On Windows, link the dependencies (libraries) that make |
4001 # up actual Chromium functionality into this .dll. | 4002 # up actual Chromium functionality into this .dll. |
4002 '<@(chromium_dependencies)', | 4003 '<@(chromium_dependencies)', |
4003 'chrome_dll_version', | 4004 'chrome_dll_version', |
4004 'chrome_resources', | 4005 'chrome_resources', |
4005 'installer/installer.gyp:installer_util_strings', | 4006 'installer/installer.gyp:installer_util_strings', |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4671 # Use outputs of this action as inputs for the main target build. | 4672 # Use outputs of this action as inputs for the main target build. |
4672 # Seems as a misnomer but makes this happy on Linux (scons). | 4673 # Seems as a misnomer but makes this happy on Linux (scons). |
4673 'process_outputs_as_sources': 1, | 4674 'process_outputs_as_sources': 1, |
4674 }, | 4675 }, |
4675 ], # 'actions' | 4676 ], # 'actions' |
4676 }, | 4677 }, |
4677 ] | 4678 ] |
4678 }], | 4679 }], |
4679 ], # 'conditions' | 4680 ], # 'conditions' |
4680 } | 4681 } |
OLD | NEW |