| OLD | NEW |
| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 src/processor/static_range_map_unittest \ | 344 src/processor/static_range_map_unittest \ |
| 345 src/processor/pathname_stripper_unittest \ | 345 src/processor/pathname_stripper_unittest \ |
| 346 src/processor/postfix_evaluator_unittest \ | 346 src/processor/postfix_evaluator_unittest \ |
| 347 src/processor/proc_maps_linux_unittest \ | 347 src/processor/proc_maps_linux_unittest \ |
| 348 src/processor/range_map_unittest \ | 348 src/processor/range_map_unittest \ |
| 349 src/processor/stackwalker_amd64_unittest \ | 349 src/processor/stackwalker_amd64_unittest \ |
| 350 src/processor/stackwalker_arm_unittest \ | 350 src/processor/stackwalker_arm_unittest \ |
| 351 src/processor/stackwalker_arm64_unittest \ | 351 src/processor/stackwalker_arm64_unittest \ |
| 352 src/processor/stackwalker_address_list_unittest \ | 352 src/processor/stackwalker_address_list_unittest \ |
| 353 src/processor/stackwalker_mips_unittest \ | 353 src/processor/stackwalker_mips_unittest \ |
| 354 src/processor/stackwalker_mips64_unittest \ |
| 354 src/processor/stackwalker_x86_unittest \ | 355 src/processor/stackwalker_x86_unittest \ |
| 355 src/processor/synth_minidump_unittest | 356 src/processor/synth_minidump_unittest |
| 356 endif | 357 endif |
| 357 | 358 |
| 358 if LINUX_HOST | 359 if LINUX_HOST |
| 359 EXTRA_PROGRAMS = \ | 360 EXTRA_PROGRAMS = \ |
| 360 src/client/linux/linux_client_unittest_shlib | 361 src/client/linux/linux_client_unittest_shlib |
| 361 | 362 |
| 362 check_PROGRAMS += \ | 363 check_PROGRAMS += \ |
| 363 src/client/linux/linux_client_unittest | 364 src/client/linux/linux_client_unittest |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1137 src_processor_stackwalker_mips_unittest_LDADD = \ | 1138 src_processor_stackwalker_mips_unittest_LDADD = \ |
| 1138 src/libbreakpad.a \ | 1139 src/libbreakpad.a \ |
| 1139 $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) | 1140 $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
| 1140 src_processor_stackwalker_mips_unittest_CPPFLAGS = \ | 1141 src_processor_stackwalker_mips_unittest_CPPFLAGS = \ |
| 1141 -I$(top_srcdir)/src \ | 1142 -I$(top_srcdir)/src \ |
| 1142 -I$(top_srcdir)/src/testing/include \ | 1143 -I$(top_srcdir)/src/testing/include \ |
| 1143 -I$(top_srcdir)/src/testing/gtest/include \ | 1144 -I$(top_srcdir)/src/testing/gtest/include \ |
| 1144 -I$(top_srcdir)/src/testing/gtest \ | 1145 -I$(top_srcdir)/src/testing/gtest \ |
| 1145 -I$(top_srcdir)/src/testing | 1146 -I$(top_srcdir)/src/testing |
| 1146 | 1147 |
| 1148 src_processor_stackwalker_mips64_unittest_SOURCES = \ |
| 1149 src/common/test_assembler.cc \ |
| 1150 src/processor/stackwalker_mips64_unittest.cc \ |
| 1151 src/testing/gtest/src/gtest-all.cc \ |
| 1152 src/testing/gtest/src/gtest_main.cc \ |
| 1153 src/testing/src/gmock-all.cc |
| 1154 src_processor_stackwalker_mips64_unittest_LDADD = \ |
| 1155 src/libbreakpad.a \ |
| 1156 $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
| 1157 src_processor_stackwalker_mips64_unittest_CPPFLAGS = \ |
| 1158 -I$(top_srcdir)/src \ |
| 1159 -I$(top_srcdir)/src/testing/include \ |
| 1160 -I$(top_srcdir)/src/testing/gtest/include \ |
| 1161 -I$(top_srcdir)/src/testing/gtest \ |
| 1162 -I$(top_srcdir)/src/testing |
| 1163 |
| 1147 src_processor_stackwalker_x86_unittest_SOURCES = \ | 1164 src_processor_stackwalker_x86_unittest_SOURCES = \ |
| 1148 src/common/test_assembler.cc \ | 1165 src/common/test_assembler.cc \ |
| 1149 src/processor/stackwalker_x86_unittest.cc \ | 1166 src/processor/stackwalker_x86_unittest.cc \ |
| 1150 src/testing/gtest/src/gtest-all.cc \ | 1167 src/testing/gtest/src/gtest-all.cc \ |
| 1151 src/testing/gtest/src/gtest_main.cc \ | 1168 src/testing/gtest/src/gtest_main.cc \ |
| 1152 src/testing/src/gmock-all.cc | 1169 src/testing/src/gmock-all.cc |
| 1153 src_processor_stackwalker_x86_unittest_LDADD = \ | 1170 src_processor_stackwalker_x86_unittest_LDADD = \ |
| 1154 src/libbreakpad.a \ | 1171 src/libbreakpad.a \ |
| 1155 $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) | 1172 $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
| 1156 src_processor_stackwalker_x86_unittest_CPPFLAGS = \ | 1173 src_processor_stackwalker_x86_unittest_CPPFLAGS = \ |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 src/tools/windows/converter/ms_symbol_server_converter.h \ | 1433 src/tools/windows/converter/ms_symbol_server_converter.h \ |
| 1417 src/tools/windows/converter/ms_symbol_server_converter.vcproj \ | 1434 src/tools/windows/converter/ms_symbol_server_converter.vcproj \ |
| 1418 src/tools/windows/dump_syms/dump_syms.cc \ | 1435 src/tools/windows/dump_syms/dump_syms.cc \ |
| 1419 src/tools/windows/dump_syms/dump_syms.vcproj \ | 1436 src/tools/windows/dump_syms/dump_syms.vcproj \ |
| 1420 src/tools/windows/dump_syms/run_regtest.sh \ | 1437 src/tools/windows/dump_syms/run_regtest.sh \ |
| 1421 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ | 1438 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ |
| 1422 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ | 1439 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ |
| 1423 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ | 1440 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ |
| 1424 src/tools/windows/symupload/symupload.cc \ | 1441 src/tools/windows/symupload/symupload.cc \ |
| 1425 src/tools/windows/symupload/symupload.vcproj | 1442 src/tools/windows/symupload/symupload.vcproj |
| OLD | NEW |