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

Side by Side Diff: breakpad/breakpad.gyp

Issue 139203006: Remove GTM dependency from iOS breakpad_client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 10 months 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
« no previous file with comments | « no previous file | no next file » | 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 ],
713 'sources': [ 710 'sources': [
714 'src/client/ios/Breakpad.h', 711 'src/client/ios/Breakpad.h',
715 'src/client/ios/Breakpad.mm', 712 'src/client/ios/Breakpad.mm',
716 'src/client/ios/BreakpadController.h', 713 'src/client/ios/BreakpadController.h',
717 'src/client/ios/BreakpadController.mm', 714 'src/client/ios/BreakpadController.mm',
718 'src/client/ios/handler/ios_exception_minidump_generator.mm', 715 'src/client/ios/handler/ios_exception_minidump_generator.mm',
719 'src/client/ios/handler/ios_exception_minidump_generator.h', 716 'src/client/ios/handler/ios_exception_minidump_generator.h',
720 'src/client/mac/crash_generation/ConfigFile.h', 717 'src/client/mac/crash_generation/ConfigFile.h',
721 'src/client/mac/crash_generation/ConfigFile.mm', 718 'src/client/mac/crash_generation/ConfigFile.mm',
722 'src/client/mac/handler/breakpad_nlist_64.cc', 719 'src/client/mac/handler/breakpad_nlist_64.cc',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 'action_name': 'strip breakpad_unittests', 862 'action_name': 'strip breakpad_unittests',
866 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], 863 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ],
867 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], 864 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ],
868 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ], 865 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
869 }], 866 }],
870 } 867 }
871 ], 868 ],
872 }], 869 }],
873 ], 870 ],
874 } 871 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698