| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 src/third_party/libdisasm/x86_operand_list.h | 331 src/third_party/libdisasm/x86_operand_list.h |
| 332 | 332 |
| 333 ## Programs | 333 ## Programs |
| 334 bin_PROGRAMS += \ | 334 bin_PROGRAMS += \ |
| 335 src/processor/microdump_stackwalk \ | 335 src/processor/microdump_stackwalk \ |
| 336 src/processor/minidump_dump \ | 336 src/processor/minidump_dump \ |
| 337 src/processor/minidump_stackwalk | 337 src/processor/minidump_stackwalk |
| 338 endif !DISABLE_PROCESSOR | 338 endif !DISABLE_PROCESSOR |
| 339 | 339 |
| 340 if LINUX_HOST | 340 if LINUX_HOST |
| 341 bin_PROGRAMS += \ | 341 EXTRA_PROGRAMS += \ |
| 342 » src/client/linux/linux_dumper_unittest_helper |
| 343 CLEANFILES += \ |
| 342 src/client/linux/linux_dumper_unittest_helper | 344 src/client/linux/linux_dumper_unittest_helper |
| 343 | 345 |
| 344 if !DISABLE_TOOLS | 346 if !DISABLE_TOOLS |
| 345 bin_PROGRAMS += \ | 347 bin_PROGRAMS += \ |
| 346 src/tools/linux/core2md/core2md \ | 348 src/tools/linux/core2md/core2md \ |
| 347 src/tools/linux/dump_syms/dump_syms \ | 349 src/tools/linux/dump_syms/dump_syms \ |
| 348 src/tools/linux/md2core/minidump-2-core \ | 350 src/tools/linux/md2core/minidump-2-core \ |
| 349 src/tools/linux/symupload/minidump_upload \ | 351 src/tools/linux/symupload/minidump_upload \ |
| 350 src/tools/linux/symupload/sym_upload | 352 src/tools/linux/symupload/sym_upload |
| 351 if X86_HOST | 353 if X86_HOST |
| (...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 src/tools/windows/dump_syms/dump_syms.vcproj \ | 1313 src/tools/windows/dump_syms/dump_syms.vcproj \ |
| 1312 src/tools/windows/dump_syms/run_regtest.sh \ | 1314 src/tools/windows/dump_syms/run_regtest.sh \ |
| 1313 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ | 1315 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ |
| 1314 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ | 1316 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ |
| 1315 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ | 1317 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ |
| 1316 src/tools/windows/symupload/symupload.cc \ | 1318 src/tools/windows/symupload/symupload.cc \ |
| 1317 src/tools/windows/symupload/symupload.vcproj | 1319 src/tools/windows/symupload/symupload.vcproj |
| 1318 | 1320 |
| 1319 mostlyclean-local: | 1321 mostlyclean-local: |
| 1320 -find src -name '*.dwo' -exec rm -f {} + | 1322 -find src -name '*.dwo' -exec rm -f {} + |
| OLD | NEW |