| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 src/client/linux/linux_client_unittest_shlib | 394 src/client/linux/linux_client_unittest_shlib |
| 395 CLEANFILES += \ | 395 CLEANFILES += \ |
| 396 src/client/linux/linux_client_unittest_shlib | 396 src/client/linux/linux_client_unittest_shlib |
| 397 | 397 |
| 398 check_PROGRAMS += \ | 398 check_PROGRAMS += \ |
| 399 src/client/linux/linux_client_unittest | 399 src/client/linux/linux_client_unittest |
| 400 | 400 |
| 401 if !DISABLE_TOOLS | 401 if !DISABLE_TOOLS |
| 402 check_PROGRAMS += \ | 402 check_PROGRAMS += \ |
| 403 src/common/dumper_unittest \ | 403 src/common/dumper_unittest \ |
| 404 src/common/mac/macho_reader_unittest \ | |
| 405 src/tools/linux/md2core/minidump_2_core_unittest | 404 src/tools/linux/md2core/minidump_2_core_unittest |
| 405 if X86_HOST |
| 406 check_PROGRAMS += \ |
| 407 src/common/mac/macho_reader_unittest |
| 408 endif |
| 406 endif | 409 endif |
| 407 endif LINUX_HOST | 410 endif LINUX_HOST |
| 408 | 411 |
| 409 if !DISABLE_PROCESSOR | 412 if !DISABLE_PROCESSOR |
| 410 if SELFTEST | 413 if SELFTEST |
| 411 check_PROGRAMS += \ | 414 check_PROGRAMS += \ |
| 412 src/processor/stackwalker_selftest | 415 src/processor/stackwalker_selftest |
| 413 endif SELFTEST | 416 endif SELFTEST |
| 414 endif !DISABLE_PROCESSOR | 417 endif !DISABLE_PROCESSOR |
| 415 | 418 |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 src/tools/windows/dump_syms/dump_syms.vcproj \ | 1325 src/tools/windows/dump_syms/dump_syms.vcproj \ |
| 1323 src/tools/windows/dump_syms/run_regtest.sh \ | 1326 src/tools/windows/dump_syms/run_regtest.sh \ |
| 1324 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ | 1327 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ |
| 1325 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ | 1328 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ |
| 1326 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ | 1329 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ |
| 1327 src/tools/windows/symupload/symupload.cc \ | 1330 src/tools/windows/symupload/symupload.cc \ |
| 1328 src/tools/windows/symupload/symupload.vcproj | 1331 src/tools/windows/symupload/symupload.vcproj |
| 1329 | 1332 |
| 1330 mostlyclean-local: | 1333 mostlyclean-local: |
| 1331 -find src -name '*.dwo' -exec rm -f {} + | 1334 -find src -name '*.dwo' -exec rm -f {} + |
| OLD | NEW |