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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
749 'src/common/simple_string_dictionary.cc', | 749 'src/common/simple_string_dictionary.cc', |
750 'src/common/simple_string_dictionary.h', | 750 'src/common/simple_string_dictionary.h', |
751 'src/common/string_conversion.cc', | 751 'src/common/string_conversion.cc', |
752 'src/common/string_conversion.h', | 752 'src/common/string_conversion.h', |
753 'src/google_breakpad/common/minidump_format.h', | 753 'src/google_breakpad/common/minidump_format.h', |
754 ], | 754 ], |
755 'include_dirs': [ | 755 'include_dirs': [ |
756 'src', | 756 'src', |
757 'src/client/mac/Framework', | 757 'src/client/mac/Framework', |
758 'src/common/mac', | 758 'src/common/mac', |
759 # For GTMLogger. | 759 # For GTMLogger. |
Mark Mentovai
2013/12/13 23:07:26
As discussed elsewhere, make this target depend on
tfarina
2013/12/16 02:42:04
Done.
tfarina
2013/12/16 02:42:04
Done.
| |
760 '<(DEPTH)/third_party/GTM', | 760 '<(DEPTH)/third_party/google_toolbox_for_mac/src', |
761 '<(DEPTH)/third_party/GTM/Foundation', | 761 '<(DEPTH)/third_party/google_toolbox_for_mac/src/Foundation', |
762 ], | 762 ], |
763 'link_settings': { | 763 'link_settings': { |
764 # Build the version of GTMLogger.m in third_party rather than the | 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 | 765 # one in src/common/mac because the former catches all exceptions |
766 # whereas the latter lets them propagate, which can cause odd | 766 # whereas the latter lets them propagate, which can cause odd |
767 # crashes. | 767 # crashes. |
768 'sources': [ | 768 'sources': [ |
769 '<(DEPTH)/third_party/GTM/Foundation/GTMLogger.h', | 769 '<(DEPTH)/third_party/google_toolbox_for_mac/src/Foundation/GTMLog ger.h', |
770 '<(DEPTH)/third_party/GTM/Foundation/GTMLogger.m', | 770 '<(DEPTH)/third_party/google_toolbox_for_mac/src/Foundation/GTMLog ger.m', |
771 ], | 771 ], |
772 'include_dirs': [ | 772 'include_dirs': [ |
773 '<(DEPTH)/third_party/GTM', | 773 '<(DEPTH)/third_party/google_toolbox_for_mac/src', |
774 '<(DEPTH)/third_party/GTM/Foundation', | 774 '<(DEPTH)/third_party/google_toolbox_for_mac/src/Foundation', |
775 ], | 775 ], |
776 }, | 776 }, |
777 } | 777 } |
778 ] | 778 ] |
779 }], | 779 }], |
780 ['OS=="ios" and "<(GENERATOR)"!="ninja"', { | 780 ['OS=="ios" and "<(GENERATOR)"!="ninja"', { |
781 'variables': { | 781 'variables': { |
782 'ninja_output_dir': 'ninja-breakpad', | 782 'ninja_output_dir': 'ninja-breakpad', |
783 'ninja_product_dir': | 783 'ninja_product_dir': |
784 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', | 784 '<(DEPTH)/xcodebuild/<(ninja_output_dir)/<(CONFIGURATION_NAME)', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
864 'target_name': 'symupload', | 864 'target_name': 'symupload', |
865 'type': 'none', | 865 'type': 'none', |
866 'dependencies': [ | 866 'dependencies': [ |
867 'breakpad_utilities', | 867 'breakpad_utilities', |
868 ], | 868 ], |
869 } | 869 } |
870 ], | 870 ], |
871 }], | 871 }], |
872 ], | 872 ], |
873 } | 873 } |
OLD | NEW |