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

Side by Side Diff: breakpad/breakpad.gyp

Issue 229653003: [Breakpad] Add get_context_unittest to breakpad_unittests for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 '-Wno-unused-value', 607 '-Wno-unused-value',
608 ], 608 ],
609 }], 609 }],
610 ['OS=="android"', { 610 ['OS=="android"', {
611 'libraries': [ 611 'libraries': [
612 '-llog', 612 '-llog',
613 ], 613 ],
614 'include_dirs': [ 614 'include_dirs': [
615 'src/common/android/include', 615 'src/common/android/include',
616 ], 616 ],
617 'sources': [
618 'src/common/android/breakpad_getcontext_unittest.cc',
619 ],
617 }], 620 }],
618 ], 621 ],
619 }, 622 },
620 { 623 {
621 'target_name': 'linux_dumper_unittest_helper', 624 'target_name': 'linux_dumper_unittest_helper',
622 'type': 'executable', 625 'type': 'executable',
623 'dependencies': [ 626 'dependencies': [
624 'breakpad_processor_support', 627 'breakpad_processor_support',
625 ], 628 ],
626 'sources': [ 629 'sources': [
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 'action_name': 'strip breakpad_unittests', 865 'action_name': 'strip breakpad_unittests',
863 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ], 866 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ],
864 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ], 867 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ],
865 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ], 868 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
866 }], 869 }],
867 } 870 }
868 ], 871 ],
869 }], 872 }],
870 ], 873 ],
871 } 874 }
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