| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 }, | 353 }, |
| 354 { | 354 { |
| 355 # Modify the Info.plist as needed. The script explains why this | 355 # Modify the Info.plist as needed. The script explains why this |
| 356 # is needed. This is also done in the helper_app and chrome_dll | 356 # is needed. This is also done in the helper_app and chrome_dll |
| 357 # targets. Use --breakpad=0 to not include any Breakpad | 357 # targets. Use --breakpad=0 to not include any Breakpad |
| 358 # information; that all goes into the framework's Info.plist. | 358 # information; that all goes into the framework's Info.plist. |
| 359 # Keystone information is included if Keystone is enabled. The | 359 # Keystone information is included if Keystone is enabled. The |
| 360 # application reads Keystone keys from this plist and not the | 360 # application reads Keystone keys from this plist and not the |
| 361 # framework's, and the ticket will reference this Info.plist to | 361 # framework's, and the ticket will reference this Info.plist to |
| 362 # determine the tag of the installed product. Use --scm=1 to | 362 # determine the tag of the installed product. Use --scm=1 to |
| 363 # include SCM information. The --pdf flag controls whether | 363 # include SCM information. |
| 364 # to insert PDF as a supported type identifier that can be | |
| 365 # opened. | |
| 366 'postbuild_name': 'Tweak Info.plist', | 364 'postbuild_name': 'Tweak Info.plist', |
| 367 'action': ['<(tweak_info_plist_path)', | 365 'action': ['<(tweak_info_plist_path)', |
| 368 '--breakpad=0', | 366 '--breakpad=0', |
| 369 '--keystone=<(mac_keystone)', | 367 '--keystone=<(mac_keystone)', |
| 370 '--scm=1', | 368 '--scm=1', |
| 371 '--pdf=1', | |
| 372 '--bundle_id=<(mac_bundle_id)'], | 369 '--bundle_id=<(mac_bundle_id)'], |
| 373 }, | 370 }, |
| 374 { | 371 { |
| 375 'postbuild_name': 'Clean up old versions', | 372 'postbuild_name': 'Clean up old versions', |
| 376 'action': [ | 373 'action': [ |
| 377 'tools/build/mac/clean_up_old_versions', | 374 'tools/build/mac/clean_up_old_versions', |
| 378 '<(version_full)' | 375 '<(version_full)' |
| 379 ], | 376 ], |
| 380 }, | 377 }, |
| 381 { | 378 { |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 'dependencies': [ | 688 'dependencies': [ |
| 692 'chrome_nacl_win64', | 689 'chrome_nacl_win64', |
| 693 ], | 690 ], |
| 694 }], | 691 }], |
| 695 ], | 692 ], |
| 696 }, | 693 }, |
| 697 ], | 694 ], |
| 698 }], | 695 }], |
| 699 ], | 696 ], |
| 700 } | 697 } |
| OLD | NEW |