| OLD | NEW |
| 1 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009-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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 { | 125 { |
| 126 'target_name': 'chrome', | 126 'target_name': 'chrome', |
| 127 'type': 'executable', | 127 'type': 'executable', |
| 128 'mac_bundle': 1, | 128 'mac_bundle': 1, |
| 129 'msvs_guid': '7B219FAA-E360-43C8-B341-804A94EEFFAC', | 129 'msvs_guid': '7B219FAA-E360-43C8-B341-804A94EEFFAC', |
| 130 'variables': { | 130 'variables': { |
| 131 'chrome_exe_target': 1, | 131 'chrome_exe_target': 1, |
| 132 }, | 132 }, |
| 133 'dependencies': [ | 133 'dependencies': [ |
| 134 'chrome_version_info', | 134 'chrome_version_info', |
| 135 # Copy a Flash Player binary to PRODUCT_DIR if applicable. | 135 # Copy Flash Player files to PRODUCT_DIR if applicable. |
| 136 # Let the .gyp file decide what to do on a per-OS basis. | 136 # Let the .gyp file decide what to do on a per-OS basis. |
| 137 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 137 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
| 138 ], | 138 ], |
| 139 'conditions': [ | 139 'conditions': [ |
| 140 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 140 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 141 'actions': [ | 141 'actions': [ |
| 142 { | 142 { |
| 143 'action_name': 'manpage', | 143 'action_name': 'manpage', |
| 144 'conditions': [ | 144 'conditions': [ |
| 145 [ 'branding == "Chrome"', { | 145 [ 'branding == "Chrome"', { |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 'copies': [ | 330 'copies': [ |
| 331 { | 331 { |
| 332 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Ve
rsions/<(version_full)', | 332 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Ve
rsions/<(version_full)', |
| 333 'files': [ | 333 'files': [ |
| 334 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app', | 334 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app', |
| 335 ], | 335 ], |
| 336 'conditions': [ | 336 'conditions': [ |
| 337 [ 'branding == "Chrome"', { | 337 [ 'branding == "Chrome"', { |
| 338 'files': [ | 338 'files': [ |
| 339 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', | 339 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', |
| 340 '<(PRODUCT_DIR)/plugin.vch', |
| 340 ], | 341 ], |
| 341 }], | 342 }], |
| 342 ], | 343 ], |
| 343 }, | 344 }, |
| 344 ], | 345 ], |
| 345 'postbuilds': [ | 346 'postbuilds': [ |
| 346 { | 347 { |
| 347 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', | 348 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', |
| 348 'action': [ | 349 'action': [ |
| 349 'tools/build/mac/copy_framework_unversioned', | 350 'tools/build/mac/copy_framework_unversioned', |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 'configurations': { | 539 'configurations': { |
| 539 'Common_Base': { | 540 'Common_Base': { |
| 540 'msvs_target_platform': 'x64', | 541 'msvs_target_platform': 'x64', |
| 541 }, | 542 }, |
| 542 }, | 543 }, |
| 543 }, | 544 }, |
| 544 ], | 545 ], |
| 545 }], | 546 }], |
| 546 ], | 547 ], |
| 547 } | 548 } |
| OLD | NEW |