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