| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 if LINUX_HOST | 340 if LINUX_HOST |
| 341 bin_PROGRAMS += \ | 341 bin_PROGRAMS += \ |
| 342 src/client/linux/linux_dumper_unittest_helper | 342 src/client/linux/linux_dumper_unittest_helper |
| 343 | 343 |
| 344 if !DISABLE_TOOLS | 344 if !DISABLE_TOOLS |
| 345 bin_PROGRAMS += \ | 345 bin_PROGRAMS += \ |
| 346 src/tools/linux/core2md/core2md \ | 346 src/tools/linux/core2md/core2md \ |
| 347 src/tools/linux/dump_syms/dump_syms \ | 347 src/tools/linux/dump_syms/dump_syms \ |
| 348 src/tools/linux/md2core/minidump-2-core \ | 348 src/tools/linux/md2core/minidump-2-core \ |
| 349 src/tools/linux/symupload/minidump_upload \ | 349 src/tools/linux/symupload/minidump_upload \ |
| 350 » src/tools/linux/symupload/sym_upload \ | 350 » src/tools/linux/symupload/sym_upload |
| 351 if X86_HOST |
| 352 bin_PROGRAMS += \ |
| 351 src/tools/mac/dump_syms/dump_syms_mac | 353 src/tools/mac/dump_syms/dump_syms_mac |
| 352 endif | 354 endif |
| 355 endif |
| 353 endif LINUX_HOST | 356 endif LINUX_HOST |
| 354 | 357 |
| 355 | 358 |
| 356 ## Tests | 359 ## Tests |
| 357 if !DISABLE_PROCESSOR | 360 if !DISABLE_PROCESSOR |
| 358 check_PROGRAMS += \ | 361 check_PROGRAMS += \ |
| 359 src/common/test_assembler_unittest \ | 362 src/common/test_assembler_unittest \ |
| 360 src/processor/address_map_unittest \ | 363 src/processor/address_map_unittest \ |
| 361 src/processor/basic_source_line_resolver_unittest \ | 364 src/processor/basic_source_line_resolver_unittest \ |
| 362 src/processor/cfi_frame_info_unittest \ | 365 src/processor/cfi_frame_info_unittest \ |
| (...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 src/tools/windows/dump_syms/dump_syms.vcproj \ | 1311 src/tools/windows/dump_syms/dump_syms.vcproj \ |
| 1309 src/tools/windows/dump_syms/run_regtest.sh \ | 1312 src/tools/windows/dump_syms/run_regtest.sh \ |
| 1310 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ | 1313 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ |
| 1311 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ | 1314 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ |
| 1312 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ | 1315 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ |
| 1313 src/tools/windows/symupload/symupload.cc \ | 1316 src/tools/windows/symupload/symupload.cc \ |
| 1314 src/tools/windows/symupload/symupload.vcproj | 1317 src/tools/windows/symupload/symupload.vcproj |
| 1315 | 1318 |
| 1316 mostlyclean-local: | 1319 mostlyclean-local: |
| 1317 -find src -name '*.dwo' -exec rm -f {} + | 1320 -find src -name '*.dwo' -exec rm -f {} + |
| OLD | NEW |