| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', | 76 'msvs_guid': 'C0A7EE2C-2A6D-45BE-BA78-6D006FDF52D9', |
| 77 'dependencies': [ | 77 'dependencies': [ |
| 78 # On Windows, link the dependencies (libraries) that make | 78 # On Windows, link the dependencies (libraries) that make |
| 79 # up actual Chromium functionality into this .dll. | 79 # up actual Chromium functionality into this .dll. |
| 80 'chrome_dll_version', | 80 'chrome_dll_version', |
| 81 'chrome_resources', | 81 'chrome_resources', |
| 82 'installer_util_strings', | 82 'installer_util_strings', |
| 83 'worker', | 83 'worker', |
| 84 '../printing/printing.gyp:printing', | 84 '../printing/printing.gyp:printing', |
| 85 '../net/net.gyp:net_resources', | 85 '../net/net.gyp:net_resources', |
| 86 '../build/util/support/support.gyp:*', | |
| 87 '../third_party/cld/cld.gyp:cld', | 86 '../third_party/cld/cld.gyp:cld', |
| 88 '../views/views.gyp:views', | 87 '../views/views.gyp:views', |
| 89 '../webkit/support/webkit_support.gyp:webkit_resources', | 88 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 90 '../gears/gears.gyp:gears', | 89 '../gears/gears.gyp:gears', |
| 91 ], | 90 ], |
| 92 'sources': [ | 91 'sources': [ |
| 93 'app/chrome_command_ids.h', | 92 'app/chrome_command_ids.h', |
| 94 'app/chrome_dll.rc', | 93 'app/chrome_dll.rc', |
| 95 'app/chrome_dll_resource.h', | 94 'app/chrome_dll_resource.h', |
| 96 'app/chrome_main.cc', | 95 'app/chrome_main.cc', |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'app/theme/stop_Template.pdf', | 281 'app/theme/stop_Template.pdf', |
| 283 'app/theme/tools_Template.pdf', | 282 'app/theme/tools_Template.pdf', |
| 284 'browser/ui/cocoa/install.sh', | 283 'browser/ui/cocoa/install.sh', |
| 285 ], | 284 ], |
| 286 'mac_bundle_resources!': [ | 285 'mac_bundle_resources!': [ |
| 287 'app/framework-Info.plist', | 286 'app/framework-Info.plist', |
| 288 ], | 287 ], |
| 289 'dependencies': [ | 288 'dependencies': [ |
| 290 # Bring in pdfsqueeze and run it on all pdfs | 289 # Bring in pdfsqueeze and run it on all pdfs |
| 291 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', | 290 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', |
| 292 '../build/util/support/support.gyp:*', | |
| 293 # On Mac, Flash gets put into the framework, so we need this | 291 # On Mac, Flash gets put into the framework, so we need this |
| 294 # dependency here. flash_player.gyp will copy the Flash bundle | 292 # dependency here. flash_player.gyp will copy the Flash bundle |
| 295 # into PRODUCT_DIR. | 293 # into PRODUCT_DIR. |
| 296 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 294 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 297 ], | 295 ], |
| 298 'rules': [ | 296 'rules': [ |
| 299 { | 297 { |
| 300 'rule_name': 'pdfsqueeze', | 298 'rule_name': 'pdfsqueeze', |
| 301 'extension': 'pdf', | 299 'extension': 'pdf', |
| 302 'inputs': [ | 300 'inputs': [ |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 613 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 616 }, | 614 }, |
| 617 }, | 615 }, |
| 618 }, | 616 }, |
| 619 }, | 617 }, |
| 620 }, # target chrome_dll | 618 }, # target chrome_dll |
| 621 ], | 619 ], |
| 622 }], | 620 }], |
| 623 ], | 621 ], |
| 624 } | 622 } |
| OLD | NEW |