| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 'conditions': [ | 583 'conditions': [ |
| 584 ['debug_devtools!=0', { | 584 ['debug_devtools!=0', { |
| 585 'files': [ | 585 'files': [ |
| 586 '<(PRODUCT_DIR)/resources/inspector', | 586 '<(PRODUCT_DIR)/resources/inspector', |
| 587 ], | 587 ], |
| 588 }], | 588 }], |
| 589 ], | 589 ], |
| 590 }, | 590 }, |
| 591 ], | 591 ], |
| 592 'conditions': [ | 592 'conditions': [ |
| 593 ['branding=="Chrome"', { | |
| 594 'copies': [ | |
| 595 { | |
| 596 # This location is for the Mac build. Note that the | |
| 597 # copying of these files for Windows and Linux is handled | |
| 598 # in chrome.gyp, as Mac needs to be dropped inside the | |
| 599 # framework. | |
| 600 'destination': | |
| 601 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Default Apps', | |
| 602 'files': [ | |
| 603 'browser/resources/default_apps/gmail.crx', | |
| 604 'browser/resources/default_apps/youtube.crx', | |
| 605 ], | |
| 606 }, | |
| 607 ], | |
| 608 }], | |
| 609 ['mac_breakpad==1', { | 593 ['mac_breakpad==1', { |
| 610 'variables': { | 594 'variables': { |
| 611 # A real .dSYM is needed for dump_syms to operate on. | 595 # A real .dSYM is needed for dump_syms to operate on. |
| 612 'mac_real_dsym': 1, | 596 'mac_real_dsym': 1, |
| 613 }, | 597 }, |
| 614 'sources': [ | 598 'sources': [ |
| 615 'app/breakpad_mac.mm', | 599 'app/breakpad_mac.mm', |
| 616 'app/breakpad_mac.h', | 600 'app/breakpad_mac.h', |
| 617 ], | 601 ], |
| 618 'dependencies': [ | 602 'dependencies': [ |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 749 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 766 }, | 750 }, |
| 767 }, | 751 }, |
| 768 }, | 752 }, |
| 769 }, | 753 }, |
| 770 }, # target chrome_dll | 754 }, # target chrome_dll |
| 771 ], | 755 ], |
| 772 }], | 756 }], |
| 773 ], | 757 ], |
| 774 } | 758 } |
| OLD | NEW |