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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 'targets': [ | 124 'targets': [ |
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 # Copy a Flash Player binary to PRODUCT_DIR if applicable. | 134 # Copy Flash Player files to PRODUCT_DIR if applicable. |
135 # Let the .gyp file decide what to do on a per-OS basis. | 135 # Let the .gyp file decide what to do on a per-OS basis. |
136 '../third_party/adobe/flash/flash_player.gyp:flash_player', | 136 '../third_party/adobe/flash/flash_player.gyp:flash_player', |
137 ], | 137 ], |
138 'conditions': [ | 138 'conditions': [ |
139 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 139 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
140 'actions': [ | 140 'actions': [ |
141 { | 141 { |
142 'action_name': 'manpage', | 142 'action_name': 'manpage', |
143 'conditions': [ | 143 'conditions': [ |
144 [ 'branding == "Chrome"', { | 144 [ 'branding == "Chrome"', { |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 'copies': [ | 387 'copies': [ |
388 { | 388 { |
389 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Ve
rsions/<(version_full)', | 389 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Ve
rsions/<(version_full)', |
390 'files': [ | 390 'files': [ |
391 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app', | 391 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app', |
392 ], | 392 ], |
393 'conditions': [ | 393 'conditions': [ |
394 [ 'branding == "Chrome"', { | 394 [ 'branding == "Chrome"', { |
395 'files': [ | 395 'files': [ |
396 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', | 396 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', |
| 397 '<(PRODUCT_DIR)/plugin.vch', |
397 ], | 398 ], |
398 }], | 399 }], |
399 ], | 400 ], |
400 }, | 401 }, |
401 ], | 402 ], |
402 'postbuilds': [ | 403 'postbuilds': [ |
403 { | 404 { |
404 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', | 405 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', |
405 'action': [ | 406 'action': [ |
406 'tools/build/mac/copy_framework_unversioned', | 407 'tools/build/mac/copy_framework_unversioned', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 'configurations': { | 534 'configurations': { |
534 'Common_Base': { | 535 'Common_Base': { |
535 'msvs_target_platform': 'x64', | 536 'msvs_target_platform': 'x64', |
536 }, | 537 }, |
537 }, | 538 }, |
538 }, | 539 }, |
539 ], | 540 ], |
540 }], | 541 }], |
541 ], | 542 ], |
542 } | 543 } |
OLD | NEW |