| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ['OS=="win"', { | 75 ['OS=="win"', { |
| 76 'product_name': 'chrome', | 76 'product_name': 'chrome', |
| 77 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', | 77 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 # On Windows, link the dependencies (libraries) that make | 79 # On Windows, link the dependencies (libraries) that make |
| 80 # up actual Chromium functionality into this .dll. | 80 # up actual Chromium functionality into this .dll. |
| 81 'chrome_dll_version', | 81 'chrome_dll_version', |
| 82 'chrome_resources', | 82 'chrome_resources', |
| 83 'installer_util_strings', | 83 'installer_util_strings', |
| 84 '../content/content.gyp:content_worker', | 84 '../content/content.gyp:content_worker', |
| 85 '../crypto/crypto.gyp:crypto', |
| 85 '../printing/printing.gyp:printing', | 86 '../printing/printing.gyp:printing', |
| 86 '../net/net.gyp:net_resources', | 87 '../net/net.gyp:net_resources', |
| 87 '../third_party/cld/cld.gyp:cld', | 88 '../third_party/cld/cld.gyp:cld', |
| 88 '../views/views.gyp:views', | 89 '../views/views.gyp:views', |
| 89 '../webkit/support/webkit_support.gyp:webkit_resources', | 90 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 90 ], | 91 ], |
| 91 'sources': [ | 92 'sources': [ |
| 92 'app/chrome_command_ids.h', | 93 'app/chrome_command_ids.h', |
| 93 'app/chrome_dll.rc', | 94 'app/chrome_dll.rc', |
| 94 'app/chrome_dll_resource.h', | 95 'app/chrome_dll_resource.h', |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 'app/theme/stop_Template.pdf', | 269 'app/theme/stop_Template.pdf', |
| 269 'app/theme/tools_Template.pdf', | 270 'app/theme/tools_Template.pdf', |
| 270 'browser/ui/cocoa/install.sh', | 271 'browser/ui/cocoa/install.sh', |
| 271 ], | 272 ], |
| 272 'mac_bundle_resources!': [ | 273 'mac_bundle_resources!': [ |
| 273 'app/framework-Info.plist', | 274 'app/framework-Info.plist', |
| 274 ], | 275 ], |
| 275 'dependencies': [ | 276 'dependencies': [ |
| 276 # Bring in pdfsqueeze and run it on all pdfs | 277 # Bring in pdfsqueeze and run it on all pdfs |
| 277 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', | 278 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', |
| 279 '../crypto/crypto.gyp:crypto', |
| 278 # On Mac, Flash gets put into the framework, so we need this | 280 # On Mac, Flash gets put into the framework, so we need this |
| 279 # dependency here. flash_player.gyp will copy the Flash bundle | 281 # dependency here. flash_player.gyp will copy the Flash bundle |
| 280 # into PRODUCT_DIR. | 282 # into PRODUCT_DIR. |
| 281 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 283 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 282 ], | 284 ], |
| 283 'rules': [ | 285 'rules': [ |
| 284 { | 286 { |
| 285 'rule_name': 'pdfsqueeze', | 287 'rule_name': 'pdfsqueeze', |
| 286 'extension': 'pdf', | 288 'extension': 'pdf', |
| 287 'inputs': [ | 289 'inputs': [ |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 624 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 623 }, | 625 }, |
| 624 }, | 626 }, |
| 625 }, | 627 }, |
| 626 }, | 628 }, |
| 627 }, # target chrome_dll | 629 }, # target chrome_dll |
| 628 ], | 630 ], |
| 629 }], | 631 }], |
| 630 ], | 632 ], |
| 631 } | 633 } |
| OLD | NEW |