| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'conditions' : [ | 10 'conditions' : [ |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 'conditions': [ | 565 'conditions': [ |
| 566 ['debug_devtools!=0', { | 566 ['debug_devtools!=0', { |
| 567 'files': [ | 567 'files': [ |
| 568 '<(PRODUCT_DIR)/resources/inspector', | 568 '<(PRODUCT_DIR)/resources/inspector', |
| 569 ], | 569 ], |
| 570 }], | 570 }], |
| 571 ], | 571 ], |
| 572 }, | 572 }, |
| 573 ], | 573 ], |
| 574 'conditions': [ | 574 'conditions': [ |
| 575 ['branding=="Chrome"', { |
| 576 'copies': [ |
| 577 { |
| 578 # This location is for the Mac build. Note that the |
| 579 # copying of these files for Windows and Linux is handled |
| 580 # in chrome.gyp, as Mac needs to be dropped inside the |
| 581 # framework. |
| 582 'destination': |
| 583 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Default Apps', |
| 584 'files': ['<@(default_apps_list)'], |
| 585 }, |
| 586 ], |
| 587 }], |
| 575 ['mac_breakpad==1', { | 588 ['mac_breakpad==1', { |
| 576 'variables': { | 589 'variables': { |
| 577 # A real .dSYM is needed for dump_syms to operate on. | 590 # A real .dSYM is needed for dump_syms to operate on. |
| 578 'mac_real_dsym': 1, | 591 'mac_real_dsym': 1, |
| 579 }, | 592 }, |
| 580 'sources': [ | 593 'sources': [ |
| 581 'app/breakpad_mac.mm', | 594 'app/breakpad_mac.mm', |
| 582 'app/breakpad_mac.h', | 595 'app/breakpad_mac.h', |
| 583 ], | 596 ], |
| 584 'dependencies': [ | 597 'dependencies': [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 ], | 645 ], |
| 633 }], | 646 }], |
| 634 ], # conditions | 647 ], # conditions |
| 635 }], # OS=="mac" | 648 }], # OS=="mac" |
| 636 ], # conditions | 649 ], # conditions |
| 637 }, # target chrome_dll | 650 }, # target chrome_dll |
| 638 ], # targets | 651 ], # targets |
| 639 }], # OS=="mac" or OS=="win" | 652 }], # OS=="mac" or OS=="win" |
| 640 ], | 653 ], |
| 641 } | 654 } |
| OLD | NEW |