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

Side by Side Diff: Makefile.am

Issue 1576053002: Move core2md objects to libbreakpad_client.a (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 4 years, 11 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 | Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## Process this file with automake to produce Makefile.in 1 ## Process this file with automake to produce Makefile.in
2 2
3 # Copyright (c) 2011, Google Inc. 3 # Copyright (c) 2011, Google Inc.
4 # All rights reserved. 4 # All rights reserved.
5 # 5 #
6 # Redistribution and use in source and binary forms, with or without 6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are 7 # modification, are permitted provided that the following conditions are
8 # met: 8 # met:
9 # 9 #
10 # * Redistributions of source code must retain the above copyright 10 # * Redistributions of source code must retain the above copyright
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 src_client_linux_libbreakpad_client_a_SOURCES = \ 131 src_client_linux_libbreakpad_client_a_SOURCES = \
132 src/client/linux/crash_generation/crash_generation_client.cc \ 132 src/client/linux/crash_generation/crash_generation_client.cc \
133 src/client/linux/crash_generation/crash_generation_server.cc \ 133 src/client/linux/crash_generation/crash_generation_server.cc \
134 src/client/linux/dump_writer_common/thread_info.cc \ 134 src/client/linux/dump_writer_common/thread_info.cc \
135 src/client/linux/dump_writer_common/ucontext_reader.cc \ 135 src/client/linux/dump_writer_common/ucontext_reader.cc \
136 src/client/linux/handler/exception_handler.cc \ 136 src/client/linux/handler/exception_handler.cc \
137 src/client/linux/handler/minidump_descriptor.cc \ 137 src/client/linux/handler/minidump_descriptor.cc \
138 src/client/linux/log/log.cc \ 138 src/client/linux/log/log.cc \
139 src/client/linux/microdump_writer/microdump_writer.cc \ 139 src/client/linux/microdump_writer/microdump_writer.cc \
140 src/client/linux/minidump_writer/linux_core_dumper.cc \
140 src/client/linux/minidump_writer/linux_dumper.cc \ 141 src/client/linux/minidump_writer/linux_dumper.cc \
141 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ 142 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \
142 src/client/linux/minidump_writer/minidump_writer.cc \ 143 src/client/linux/minidump_writer/minidump_writer.cc \
143 src/client/minidump_file_writer.cc \ 144 src/client/minidump_file_writer.cc \
144 src/common/convert_UTF.c \ 145 src/common/convert_UTF.c \
145 src/common/md5.cc \ 146 src/common/md5.cc \
146 src/common/string_conversion.cc \ 147 src/common/string_conversion.cc \
148 src/common/linux/elf_core_dump.cc \
147 src/common/linux/elfutils.cc \ 149 src/common/linux/elfutils.cc \
148 src/common/linux/file_id.cc \ 150 src/common/linux/file_id.cc \
149 src/common/linux/guid_creator.cc \ 151 src/common/linux/guid_creator.cc \
150 src/common/linux/linux_libc_support.cc \ 152 src/common/linux/linux_libc_support.cc \
151 src/common/linux/memory_mapped_file.cc \ 153 src/common/linux/memory_mapped_file.cc \
152 src/common/linux/safe_readlink.cc 154 src/common/linux/safe_readlink.cc
153 if ANDROID_HOST 155 if ANDROID_HOST
154 src_client_linux_libbreakpad_client_a_SOURCES += \ 156 src_client_linux_libbreakpad_client_a_SOURCES += \
155 src/common/android/breakpad_getcontext.S 157 src/common/android/breakpad_getcontext.S
156 endif 158 endif
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 endif 502 endif
501 503
502 src_client_linux_linux_client_unittest_LDADD = \ 504 src_client_linux_linux_client_unittest_LDADD = \
503 src/client/linux/linux_client_unittest_shlib 505 src/client/linux/linux_client_unittest_shlib
504 506
505 src_client_linux_linux_client_unittest_DEPENDENCIES = \ 507 src_client_linux_linux_client_unittest_DEPENDENCIES = \
506 src/client/linux/linux_client_unittest_shlib 508 src/client/linux/linux_client_unittest_shlib
507 509
508 if !DISABLE_TOOLS 510 if !DISABLE_TOOLS
509 src_tools_linux_core2md_core2md_SOURCES = \ 511 src_tools_linux_core2md_core2md_SOURCES = \
510 » src/tools/linux/core2md/core2md.cc \ 512 » src/tools/linux/core2md/core2md.cc
511 » src/client/linux/minidump_writer/linux_core_dumper.cc \
512 » src/common/linux/elf_core_dump.cc
513 513
514 src_tools_linux_core2md_core2md_LDADD = \ 514 src_tools_linux_core2md_core2md_LDADD = \
515 src/client/linux/libbreakpad_client.a 515 src/client/linux/libbreakpad_client.a
516 516
517 src_tools_linux_dump_syms_dump_syms_SOURCES = \ 517 src_tools_linux_dump_syms_dump_syms_SOURCES = \
518 src/common/dwarf_cfi_to_module.cc \ 518 src/common/dwarf_cfi_to_module.cc \
519 src/common/dwarf_cu_to_module.cc \ 519 src/common/dwarf_cu_to_module.cc \
520 src/common/dwarf_line_to_module.cc \ 520 src/common/dwarf_line_to_module.cc \
521 src/common/language.cc \ 521 src/common/language.cc \
522 src/common/module.cc \ 522 src/common/module.cc \
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 src/tools/windows/converter/ms_symbol_server_converter.h \ 1417 src/tools/windows/converter/ms_symbol_server_converter.h \
1418 src/tools/windows/converter/ms_symbol_server_converter.vcproj \ 1418 src/tools/windows/converter/ms_symbol_server_converter.vcproj \
1419 src/tools/windows/dump_syms/dump_syms.cc \ 1419 src/tools/windows/dump_syms/dump_syms.cc \
1420 src/tools/windows/dump_syms/dump_syms.vcproj \ 1420 src/tools/windows/dump_syms/dump_syms.vcproj \
1421 src/tools/windows/dump_syms/run_regtest.sh \ 1421 src/tools/windows/dump_syms/run_regtest.sh \
1422 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ 1422 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \
1423 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ 1423 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \
1424 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ 1424 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \
1425 src/tools/windows/symupload/symupload.cc \ 1425 src/tools/windows/symupload/symupload.cc \
1426 src/tools/windows/symupload/symupload.vcproj 1426 src/tools/windows/symupload/symupload.vcproj
OLDNEW
« no previous file with comments | « no previous file | Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698