Chromium Code Reviews| 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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 517 if ANDROID_HOST | 517 if ANDROID_HOST |
| 518 src_client_linux_linux_client_unittest_shlib_SOURCES += \ | 518 src_client_linux_linux_client_unittest_shlib_SOURCES += \ |
| 519 src/common/android/breakpad_getcontext_unittest.cc | 519 src/common/android/breakpad_getcontext_unittest.cc |
| 520 src_client_linux_linux_client_unittest_shlib_LDFLAGS += \ | 520 src_client_linux_linux_client_unittest_shlib_LDFLAGS += \ |
| 521 -llog -lm | 521 -llog -lm |
| 522 endif | 522 endif |
| 523 | 523 |
| 524 src_client_linux_linux_client_unittest_shlib_DEPENDENCIES = \ | 524 src_client_linux_linux_client_unittest_shlib_DEPENDENCIES = \ |
| 525 src/client/linux/linux_dumper_unittest_helper \ | 525 src/client/linux/linux_dumper_unittest_helper \ |
| 526 src/client/linux/libbreakpad_client.a \ | 526 src/client/linux/libbreakpad_client.a \ |
| 527 $(TEST_LIBS) \ | |
|
vapier
2016/04/08 16:29:23
pretty sure this is incorrect and incomplete:
- we
Ted Mielczarek
2016/04/08 17:28:56
Right, but as I said, since we're setting DEPENDEN
| |
| 527 src/libbreakpad.a | 528 src/libbreakpad.a |
| 528 | 529 |
| 529 src_client_linux_linux_client_unittest_SOURCES = | 530 src_client_linux_linux_client_unittest_SOURCES = |
| 530 # The extra-long build id is for a test in minidump_writer_unittest.cc. | 531 # The extra-long build id is for a test in minidump_writer_unittest.cc. |
| 531 src_client_linux_linux_client_unittest_LDFLAGS = \ | 532 src_client_linux_linux_client_unittest_LDFLAGS = \ |
| 532 -Wl,-rpath,'$$ORIGIN' \ | 533 -Wl,-rpath,'$$ORIGIN' \ |
| 533 -Wl,--build-id=0x000102030405060708090a0b0c0d0e0f101112131415161718191a1 b1c1d1e1f | 534 -Wl,--build-id=0x000102030405060708090a0b0c0d0e0f101112131415161718191a1 b1c1d1e1f |
| 534 if ANDROID_HOST | 535 if ANDROID_HOST |
| 535 src_client_linux_linux_client_unittest_LDFLAGS += \ | 536 src_client_linux_linux_client_unittest_LDFLAGS += \ |
| 536 -llog | 537 -llog |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1332 src/tools/windows/dump_syms/dump_syms.vcproj \ | 1333 src/tools/windows/dump_syms/dump_syms.vcproj \ |
| 1333 src/tools/windows/dump_syms/run_regtest.sh \ | 1334 src/tools/windows/dump_syms/run_regtest.sh \ |
| 1334 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ | 1335 src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ |
| 1335 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ | 1336 src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ |
| 1336 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ | 1337 src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ |
| 1337 src/tools/windows/symupload/symupload.cc \ | 1338 src/tools/windows/symupload/symupload.cc \ |
| 1338 src/tools/windows/symupload/symupload.vcproj | 1339 src/tools/windows/symupload/symupload.vcproj |
| 1339 | 1340 |
| 1340 mostlyclean-local: | 1341 mostlyclean-local: |
| 1341 -find src -name '*.dwo' -exec rm -f {} + | 1342 -find src -name '*.dwo' -exec rm -f {} + |
| OLD | NEW |