| 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 # GN version: //chrome | 8 # GN version: //chrome |
| 9 'target_name': 'chrome', | 9 'target_name': 'chrome', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 # is needed. This is also done in the helper_app and chrome_dll | 334 # is needed. This is also done in the helper_app and chrome_dll |
| 335 # targets. Use --breakpad=0 to not include any Breakpad | 335 # targets. Use --breakpad=0 to not include any Breakpad |
| 336 # information; that all goes into the framework's Info.plist. | 336 # information; that all goes into the framework's Info.plist. |
| 337 # Keystone information is included if Keystone is enabled. The | 337 # Keystone information is included if Keystone is enabled. The |
| 338 # application reads Keystone keys from this plist and not the | 338 # application reads Keystone keys from this plist and not the |
| 339 # framework's, and the ticket will reference this Info.plist to | 339 # framework's, and the ticket will reference this Info.plist to |
| 340 # determine the tag of the installed product. Use --scm=1 to | 340 # determine the tag of the installed product. Use --scm=1 to |
| 341 # include SCM information. | 341 # include SCM information. |
| 342 'postbuild_name': 'Tweak Info.plist', | 342 'postbuild_name': 'Tweak Info.plist', |
| 343 'action': ['<(tweak_info_plist_path)', | 343 'action': ['<(tweak_info_plist_path)', |
| 344 '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}', |
| 344 '--breakpad=0', | 345 '--breakpad=0', |
| 345 '--keystone=<(mac_keystone)', | 346 '--keystone=<(mac_keystone)', |
| 346 '--scm=1', | 347 '--scm=1', |
| 347 '--bundle_id=<(mac_bundle_id)'], | 348 '--bundle_id=<(mac_bundle_id)'], |
| 348 }, | 349 }, |
| 349 { | 350 { |
| 350 'postbuild_name': 'Clean up old versions', | 351 'postbuild_name': 'Clean up old versions', |
| 351 'action': [ | 352 'action': [ |
| 352 'tools/build/mac/clean_up_old_versions', | 353 'tools/build/mac/clean_up_old_versions', |
| 353 '<(version_full)' | 354 '<(version_full)' |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 'dependencies': [ | 601 'dependencies': [ |
| 601 'chrome_nacl_win64', | 602 'chrome_nacl_win64', |
| 602 ], | 603 ], |
| 603 }], | 604 }], |
| 604 ], | 605 ], |
| 605 }, | 606 }, |
| 606 ], | 607 ], |
| 607 }], | 608 }], |
| 608 ], | 609 ], |
| 609 } | 610 } |
| OLD | NEW |