| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 'postbuild_name': 'Clean up old versions', | 359 'postbuild_name': 'Clean up old versions', |
| 360 'action': [ | 360 'action': [ |
| 361 'tools/build/mac/clean_up_old_versions', | 361 'tools/build/mac/clean_up_old_versions', |
| 362 '<(version_full)' | 362 '<(version_full)' |
| 363 ], | 363 ], |
| 364 }, | 364 }, |
| 365 { | 365 { |
| 366 # This postbuid step is responsible for creating the following | 366 # This postbuid step is responsible for creating the following |
| 367 # helpers: | 367 # helpers: |
| 368 # | 368 # |
| 369 # For unofficial Chromium branding, Chromium Helper EH.app and | 369 # Currently no helpers are produced (crbug.com/520680), but |
| 370 # Chromium Helper NP.app are created from Chromium Helper.app. | 370 # more will be added soon (crbug.com/497190). |
| 371 # For official Google Chrome branding, Google Chrome Helper | |
| 372 # EH.app and Google Chrome Helper NP.app are created from | |
| 373 # Google Chrome Helper.app. | |
| 374 # | |
| 375 # The EH helper is marked for an executable heap. The NP helper | |
| 376 # is marked for no PIE (ASLR). | |
| 377 # | 371 # |
| 378 # Normally, applications shipping as part of offical builds with | 372 # Normally, applications shipping as part of offical builds with |
| 379 # Google Chrome branding have dsymutil (dwarf-with-dsym, | 373 # Google Chrome branding have dsymutil (dwarf-with-dsym, |
| 380 # mac_real_dsym) and dump_syms (mac_breakpad) run on them to | 374 # mac_real_dsym) and dump_syms (mac_breakpad) run on them to |
| 381 # produce a .dSYM bundle and a Breakpad .sym file. This is | 375 # produce a .dSYM bundle and a Breakpad .sym file. This is |
| 382 # unnecessary for the "More Helpers" because they're identical | 376 # unnecessary for the "More Helpers" because they're identical |
| 383 # to the original helper except for the bits in their Mach-O | 377 # to the original helper except for the bits in their Mach-O |
| 384 # headers that change to enable or disable special features. | 378 # headers that change to enable or disable special features. |
| 385 # Each .dSYM is identified by UUID stored in a Mach-O file's | 379 # Each .dSYM is identified by UUID stored in a Mach-O file's |
| 386 # LC_UUID load command. Because the "More Helpers" share a UUID | 380 # LC_UUID load command. Because the "More Helpers" share a UUID |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 'dependencies': [ | 662 'dependencies': [ |
| 669 'chrome_nacl_win64', | 663 'chrome_nacl_win64', |
| 670 ], | 664 ], |
| 671 }], | 665 }], |
| 672 ], | 666 ], |
| 673 }, | 667 }, |
| 674 ], | 668 ], |
| 675 }], | 669 }], |
| 676 ], | 670 ], |
| 677 } | 671 } |
| OLD | NEW |