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

Side by Side Diff: breakpad/breakpad.gyp

Issue 26006002: [MIPS] Fix library order and includes for breakpad test (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase. Created 7 years, 2 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 ], 497 ],
498 'direct_dependent_settings': { 498 'direct_dependent_settings': {
499 'include_dirs': [ 499 'include_dirs': [
500 'src/common/android/include', 500 'src/common/android/include',
501 ], 501 ],
502 }, 502 },
503 'sources': [ 503 'sources': [
504 'src/common/android/breakpad_getcontext.S', 504 'src/common/android/breakpad_getcontext.S',
505 ], 505 ],
506 }], 506 }],
507 ['OS!="android"', {
508 'link_settings': {
509 'libraries': [
510 # In case of Android, '-ldl' is added in common.gypi, since it
511 # is needed for stlport_static. For LD, the order of libraries
512 # is important, and thus we skip to add it here.
513 '-ldl',
514 ],
515 },
516 }],
507 ], 517 ],
508 518
509 'link_settings': {
510 'libraries': [
511 '-ldl',
512 ],
513 },
514
515 'include_dirs': [ 519 'include_dirs': [
516 'src', 520 'src',
517 'src/client', 521 'src/client',
518 'src/third_party/linux/include', 522 'src/third_party/linux/include',
519 '..', 523 '..',
520 '.', 524 '.',
521 ], 525 ],
522 }, 526 },
523 { 527 {
524 # Breakpad r693 uses some files from src/processor in unit tests. 528 # Breakpad r693 uses some files from src/processor in unit tests.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 'breakpad_processor_support', 618 'breakpad_processor_support',
615 ], 619 ],
616 'sources': [ 620 'sources': [
617 'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc', 621 'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc',
618 ], 622 ],
619 623
620 'include_dirs': [ 624 'include_dirs': [
621 'src', 625 'src',
622 '..', 626 '..',
623 ], 627 ],
628 'conditions': [
629 ['target_arch=="mipsel" and OS=="android"', {
630 'include_dirs': [
631 'src/common/android/include',
632 ],
633 }],
634 ],
624 }, 635 },
625 { 636 {
626 'target_name': 'generate_test_dump', 637 'target_name': 'generate_test_dump',
627 'type': 'executable', 638 'type': 'executable',
628 639
629 'sources': [ 640 'sources': [
630 'linux/generate-test-dump.cc', 641 'linux/generate-test-dump.cc',
631 ], 642 ],
632 643
633 'dependencies': [ 644 'dependencies': [
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 'target_name': 'symupload', 858 'target_name': 'symupload',
848 'type': 'none', 859 'type': 'none',
849 'dependencies': [ 860 'dependencies': [
850 'breakpad_utilities', 861 'breakpad_utilities',
851 ], 862 ],
852 } 863 }
853 ], 864 ],
854 }], 865 }],
855 ], 866 ],
856 } 867 }
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