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 3937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3948 '../webkit/activex_shim/activex_shim.gyp:*', | 3948 '../webkit/activex_shim/activex_shim.gyp:*', |
3949 '../webkit/activex_shim_dll/activex_shim_dll.gyp:*', | 3949 '../webkit/activex_shim_dll/activex_shim_dll.gyp:*', |
3950 '../v8/tools/gyp/v8.gyp:v8_shell', | 3950 '../v8/tools/gyp/v8.gyp:v8_shell', |
3951 ], | 3951 ], |
3952 }, | 3952 }, |
3953 { | 3953 { |
3954 'target_name': 'chrome_dll', | 3954 'target_name': 'chrome_dll', |
3955 'type': 'shared_library', | 3955 'type': 'shared_library', |
3956 'product_name': 'chrome', | 3956 'product_name': 'chrome', |
3957 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', | 3957 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', |
3958 'msvs_existing_vcproj': 'app/chrome_dll.vcproj', | |
3959 'include_dirs': [ | 3958 'include_dirs': [ |
3960 'third_party/wtl/include', | 3959 'third_party/wtl/include', |
3961 ], | 3960 ], |
3962 'dependencies': [ | 3961 'dependencies': [ |
3963 # On Windows, link the dependencies (libraries) that make | 3962 # On Windows, link the dependencies (libraries) that make |
3964 # up actual Chromium functionality into this .dll. | 3963 # up actual Chromium functionality into this .dll. |
3965 '<@(chromium_dependencies)', | 3964 '<@(chromium_dependencies)', |
3966 'chrome_dll_version', | 3965 'chrome_dll_version', |
3967 'chrome_resources', | 3966 'chrome_resources', |
3968 'installer/installer.gyp:installer_util_strings', | 3967 'installer/installer.gyp:installer_util_strings', |
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4652 # Use outputs of this action as inputs for the main target build. | 4651 # Use outputs of this action as inputs for the main target build. |
4653 # Seems as a misnomer but makes this happy on Linux (scons). | 4652 # Seems as a misnomer but makes this happy on Linux (scons). |
4654 'process_outputs_as_sources': 1, | 4653 'process_outputs_as_sources': 1, |
4655 }, | 4654 }, |
4656 ], # 'actions' | 4655 ], # 'actions' |
4657 }, | 4656 }, |
4658 ] | 4657 ] |
4659 }], | 4658 }], |
4660 ], # 'conditions' | 4659 ], # 'conditions' |
4661 } | 4660 } |
OLD | NEW |