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 in a specific | |
599 # location under the Versions/Frameworks directories. | |
Mark Mentovai
2011/09/02 20:24:40
Revise this comment as discussed in the other file
SteveT
2011/09/02 20:30:22
Done.
| |
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 }], | |
593 ['mac_breakpad==1', { | 609 ['mac_breakpad==1', { |
594 'variables': { | 610 'variables': { |
595 # A real .dSYM is needed for dump_syms to operate on. | 611 # A real .dSYM is needed for dump_syms to operate on. |
596 'mac_real_dsym': 1, | 612 'mac_real_dsym': 1, |
597 }, | 613 }, |
598 'sources': [ | 614 'sources': [ |
599 'app/breakpad_mac.mm', | 615 'app/breakpad_mac.mm', |
600 'app/breakpad_mac.h', | 616 'app/breakpad_mac.h', |
601 ], | 617 ], |
602 'dependencies': [ | 618 'dependencies': [ |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
750 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 766 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
751 }, | 767 }, |
752 }, | 768 }, |
753 }, | 769 }, |
754 }, | 770 }, |
755 }, # target chrome_dll | 771 }, # target chrome_dll |
756 ], | 772 ], |
757 }], | 773 }], |
758 ], | 774 ], |
759 } | 775 } |
OLD | NEW |