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

Side by Side Diff: Makefile.am

Issue 1299593003: Remove obsolete seccomp_unwinder for legacy (pre-BPF) sandbox (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk
Patch Set: Rebase Created 5 years, 4 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 | Annotate | Revision Log
« 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 noinst_LIBRARIES += src/third_party/libdisasm/libdisasm.a 121 noinst_LIBRARIES += src/third_party/libdisasm/libdisasm.a
122 endif 122 endif
123 123
124 if LINUX_HOST 124 if LINUX_HOST
125 lib_LIBRARIES += src/client/linux/libbreakpad_client.a 125 lib_LIBRARIES += src/client/linux/libbreakpad_client.a
126 pkgconfig_DATA += breakpad-client.pc 126 pkgconfig_DATA += breakpad-client.pc
127 127
128 src_client_linux_libbreakpad_client_a_SOURCES = \ 128 src_client_linux_libbreakpad_client_a_SOURCES = \
129 src/client/linux/crash_generation/crash_generation_client.cc \ 129 src/client/linux/crash_generation/crash_generation_client.cc \
130 src/client/linux/crash_generation/crash_generation_server.cc \ 130 src/client/linux/crash_generation/crash_generation_server.cc \
131 src/client/linux/dump_writer_common/seccomp_unwinder.cc \
132 src/client/linux/dump_writer_common/thread_info.cc \ 131 src/client/linux/dump_writer_common/thread_info.cc \
133 src/client/linux/dump_writer_common/ucontext_reader.cc \ 132 src/client/linux/dump_writer_common/ucontext_reader.cc \
134 src/client/linux/handler/exception_handler.cc \ 133 src/client/linux/handler/exception_handler.cc \
135 src/client/linux/handler/minidump_descriptor.cc \ 134 src/client/linux/handler/minidump_descriptor.cc \
136 src/client/linux/log/log.cc \ 135 src/client/linux/log/log.cc \
137 src/client/linux/microdump_writer/microdump_writer.cc \ 136 src/client/linux/microdump_writer/microdump_writer.cc \
138 src/client/linux/minidump_writer/linux_dumper.cc \ 137 src/client/linux/minidump_writer/linux_dumper.cc \
139 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ 138 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \
140 src/client/linux/minidump_writer/minidump_writer.cc \ 139 src/client/linux/minidump_writer/minidump_writer.cc \
141 src/client/minidump_file_writer.cc \ 140 src/client/minidump_file_writer.cc \
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 -I$(top_srcdir)/src \ 449 -I$(top_srcdir)/src \
451 -I$(top_srcdir)/src/testing/include \ 450 -I$(top_srcdir)/src/testing/include \
452 -I$(top_srcdir)/src/testing/gtest/include \ 451 -I$(top_srcdir)/src/testing/gtest/include \
453 -I$(top_srcdir)/src/testing/gtest \ 452 -I$(top_srcdir)/src/testing/gtest \
454 -I$(top_srcdir)/src/testing 453 -I$(top_srcdir)/src/testing
455 src_client_linux_linux_client_unittest_shlib_LDFLAGS = \ 454 src_client_linux_linux_client_unittest_shlib_LDFLAGS = \
456 -shared \ 455 -shared \
457 -Wl,-h,linux_client_unittest_shlib 456 -Wl,-h,linux_client_unittest_shlib
458 src_client_linux_linux_client_unittest_shlib_LDADD = \ 457 src_client_linux_linux_client_unittest_shlib_LDADD = \
459 src/client/linux/crash_generation/crash_generation_client.o \ 458 src/client/linux/crash_generation/crash_generation_client.o \
460 src/client/linux/dump_writer_common/seccomp_unwinder.o \
461 src/client/linux/dump_writer_common/thread_info.o \ 459 src/client/linux/dump_writer_common/thread_info.o \
462 src/client/linux/dump_writer_common/ucontext_reader.o \ 460 src/client/linux/dump_writer_common/ucontext_reader.o \
463 src/client/linux/handler/exception_handler.o \ 461 src/client/linux/handler/exception_handler.o \
464 src/client/linux/handler/minidump_descriptor.o \ 462 src/client/linux/handler/minidump_descriptor.o \
465 src/client/linux/log/log.o \ 463 src/client/linux/log/log.o \
466 src/client/linux/microdump_writer/microdump_writer.o \ 464 src/client/linux/microdump_writer/microdump_writer.o \
467 src/client/linux/minidump_writer/linux_dumper.o \ 465 src/client/linux/minidump_writer/linux_dumper.o \
468 src/client/linux/minidump_writer/linux_ptrace_dumper.o \ 466 src/client/linux/minidump_writer/linux_ptrace_dumper.o \
469 src/client/linux/minidump_writer/minidump_writer.o \ 467 src/client/linux/minidump_writer/minidump_writer.o \
470 src/client/minidump_file_writer.o \ 468 src/client/minidump_file_writer.o \
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 src/tools/windows/converter/ms_symbol_server_converter.h \ 1354 src/tools/windows/converter/ms_symbol_server_converter.h \
1357 src/tools/windows/converter/ms_symbol_server_converter.vcproj \ 1355 src/tools/windows/converter/ms_symbol_server_converter.vcproj \
1358 src/tools/windows/dump_syms/dump_syms.cc \ 1356 src/tools/windows/dump_syms/dump_syms.cc \
1359 src/tools/windows/dump_syms/dump_syms.vcproj \ 1357 src/tools/windows/dump_syms/dump_syms.vcproj \
1360 src/tools/windows/dump_syms/run_regtest.sh \ 1358 src/tools/windows/dump_syms/run_regtest.sh \
1361 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ 1359 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \
1362 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ 1360 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \
1363 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ 1361 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \
1364 src/tools/windows/symupload/symupload.cc \ 1362 src/tools/windows/symupload/symupload.cc \
1365 src/tools/windows/symupload/symupload.vcproj 1363 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