Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Side by Side Diff: breakpad/breakpad.gyp

Issue 107933006: Get rid of ui_cocoa_third_party_toolkits target from ui.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mark review Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/mac/cocoa_protocols.h ('k') | chrome/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« no previous file with comments | « base/mac/cocoa_protocols.h ('k') | chrome/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698