.gitignore 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Copyright 2014 Google LLC
  2. #
  3. # Redistribution and use in source and binary forms, with or without
  4. # modification, are permitted provided that the following conditions are
  5. # met:
  6. #
  7. # * Redistributions of source code must retain the above copyright
  8. # notice, this list of conditions and the following disclaimer.
  9. # * Redistributions in binary form must reproduce the above
  10. # copyright notice, this list of conditions and the following disclaimer
  11. # in the documentation and/or other materials provided with the
  12. # distribution.
  13. # * Neither the name of Google LLC nor the names of its
  14. # contributors may be used to endorse or promote products derived from
  15. # this software without specific prior written permission.
  16. #
  17. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. # Ignore other VCSs.
  29. .repo/
  30. .svn/
  31. # Ignore common compiled artifacts.
  32. *~
  33. *.dwo
  34. *.o
  35. lib*.a
  36. /breakpad.pc
  37. /breakpad-client.pc
  38. /src/client/linux/linux_client_unittest_shlib
  39. /src/client/linux/linux_dumper_unittest_helper
  40. /src/common/linux/google_crashdump_uploader_test
  41. /src/processor/microdump_stackwalk
  42. /src/processor/minidump_dump
  43. /src/processor/minidump_stackwalk
  44. /src/tools/linux/core2md/core2md
  45. /src/tools/linux/core_handler/core_handler
  46. /src/tools/linux/dump_syms/dump_syms
  47. /src/tools/linux/md2core/minidump-2-core
  48. /src/tools/linux/pid2md/pid2md
  49. /src/tools/linux/symupload/minidump_upload
  50. /src/tools/linux/symupload/sym_upload
  51. /src/tools/mac/dump_syms/dump_syms
  52. /src/tools/mac/dump_syms/dump_syms_mac
  53. # Ignore unit test artifacts.
  54. *_unittest
  55. *.log
  56. *.trs
  57. # Ignore autotools generated artifacts.
  58. .deps
  59. .dirstamp
  60. autom4te.cache/
  61. /config.cache
  62. config.h
  63. /config.log
  64. /config.status
  65. /Makefile
  66. stamp-h1
  67. # Ignore generated Visual Studio artifacts.
  68. *.filters
  69. *.sdf
  70. *.sln
  71. *.suo
  72. *.vcproj
  73. *.vcxproj
  74. # Ignore generated Makefiles
  75. src/Makefile
  76. *.Makefile
  77. *.target.mk
  78. # Ignore compiled Python files.
  79. *.pyc
  80. # Ignore directories gclient syncs.
  81. src/testing
  82. src/third_party/lss
  83. src/third_party/protobuf