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 'includes': [ | 6 'includes': [ |
7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 'src', | 700 'src', |
701 ], | 701 ], |
702 }, | 702 }, |
703 ], | 703 ], |
704 }], | 704 }], |
705 ['OS=="ios"', { | 705 ['OS=="ios"', { |
706 'targets': [ | 706 'targets': [ |
707 { | 707 { |
708 'target_name': 'breakpad_client', | 708 'target_name': 'breakpad_client', |
709 'type': 'static_library', | 709 'type': 'static_library', |
| 710 'dependencies': [ |
| 711 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:go
ogle_toolbox_for_mac', |
| 712 ], |
710 'sources': [ | 713 'sources': [ |
711 'src/client/ios/Breakpad.h', | 714 'src/client/ios/Breakpad.h', |
712 'src/client/ios/Breakpad.mm', | 715 'src/client/ios/Breakpad.mm', |
713 'src/client/ios/BreakpadController.h', | 716 'src/client/ios/BreakpadController.h', |
714 'src/client/ios/BreakpadController.mm', | 717 'src/client/ios/BreakpadController.mm', |
715 'src/client/ios/handler/ios_exception_minidump_generator.mm', | 718 'src/client/ios/handler/ios_exception_minidump_generator.mm', |
716 'src/client/ios/handler/ios_exception_minidump_generator.h', | 719 'src/client/ios/handler/ios_exception_minidump_generator.h', |
717 'src/client/mac/crash_generation/ConfigFile.h', | 720 'src/client/mac/crash_generation/ConfigFile.h', |
718 'src/client/mac/crash_generation/ConfigFile.mm', | 721 'src/client/mac/crash_generation/ConfigFile.mm', |
719 'src/client/mac/handler/breakpad_nlist_64.cc', | 722 'src/client/mac/handler/breakpad_nlist_64.cc', |
(...skipping 29 matching lines...) Expand all Loading... |
749 'src/common/simple_string_dictionary.cc', | 752 'src/common/simple_string_dictionary.cc', |
750 'src/common/simple_string_dictionary.h', | 753 'src/common/simple_string_dictionary.h', |
751 'src/common/string_conversion.cc', | 754 'src/common/string_conversion.cc', |
752 'src/common/string_conversion.h', | 755 'src/common/string_conversion.h', |
753 'src/google_breakpad/common/minidump_format.h', | 756 'src/google_breakpad/common/minidump_format.h', |
754 ], | 757 ], |
755 'include_dirs': [ | 758 'include_dirs': [ |
756 'src', | 759 'src', |
757 'src/client/mac/Framework', | 760 'src/client/mac/Framework', |
758 'src/common/mac', | 761 'src/common/mac', |
759 # For GTMLogger. | |
760 '<(DEPTH)/third_party/GTM', | |
761 '<(DEPTH)/third_party/GTM/Foundation', | |
762 ], | 762 ], |
763 'link_settings': { | |
764 # Build the version of GTMLogger.m in third_party rather than the | |
765 # one in src/common/mac because the former catches all exceptions | |
766 # whereas the latter lets them propagate, which can cause odd | |
767 # crashes. | |
768 'sources': [ | |
769 '<(DEPTH)/third_party/GTM/Foundation/GTMLogger.h', | |
770 '<(DEPTH)/third_party/GTM/Foundation/GTMLogger.m', | |
771 ], | |
772 'include_dirs': [ | |
773 '<(DEPTH)/third_party/GTM', | |
774 '<(DEPTH)/third_party/GTM/Foundation', | |
775 ], | |
776 }, | |
777 } | 763 } |
778 ] | 764 ] |
779 }], | 765 }], |
780 ['OS=="ios" and "<(GENERATOR)"!="ninja"', { | 766 ['OS=="ios" and "<(GENERATOR)"!="ninja"', { |
781 'variables': { | 767 'variables': { |
782 'ninja_output_dir': 'ninja-breakpad', | 768 'ninja_output_dir': 'ninja-breakpad', |
783 'ninja_product_dir': | 769 'ninja_product_dir': |
784 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', | 770 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', |
785 }, | 771 }, |
786 # Generation is done via two actions: (1) compiling the executable with | 772 # Generation is done via two actions: (1) compiling the executable with |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
864 'target_name': 'symupload', | 850 'target_name': 'symupload', |
865 'type': 'none', | 851 'type': 'none', |
866 'dependencies': [ | 852 'dependencies': [ |
867 'breakpad_utilities', | 853 'breakpad_utilities', |
868 ], | 854 ], |
869 } | 855 } |
870 ], | 856 ], |
871 }], | 857 }], |
872 ], | 858 ], |
873 } | 859 } |
OLD | NEW |