/ .gitignore
.gitignore
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 29 # Ignore other VCSs. 30 .repo/ 31 .svn/ 32 33 # Ignore common compiled artifacts. 34 *~ 35 *.dwo 36 *.o 37 lib*.a 38 /breakpad.pc 39 /breakpad-client.pc 40 /src/client/linux/linux_client_unittest_shlib 41 /src/client/linux/linux_dumper_unittest_helper 42 /src/common/linux/google_crashdump_uploader_test 43 /src/processor/microdump_stackwalk 44 /src/processor/minidump_dump 45 /src/processor/minidump_stackwalk 46 /src/tools/linux/core2md/core2md 47 /src/tools/linux/core_handler/core_handler 48 /src/tools/linux/dump_syms/dump_syms 49 /src/tools/linux/md2core/minidump-2-core 50 /src/tools/linux/pid2md/pid2md 51 /src/tools/linux/symupload/minidump_upload 52 /src/tools/linux/symupload/sym_upload 53 /src/tools/mac/dump_syms/dump_syms 54 /src/tools/mac/dump_syms/dump_syms_mac 55 56 # Ignore unit test artifacts. 57 *_unittest 58 *.log 59 *.trs 60 61 # Ignore autotools generated artifacts. 62 .deps 63 .dirstamp 64 autom4te.cache/ 65 /config.cache 66 config.h 67 /config.log 68 /config.status 69 /Makefile 70 stamp-h1 71 72 # Ignore generated Visual Studio artifacts. 73 *.filters 74 *.sdf 75 *.sln 76 *.suo 77 *.vcproj 78 *.vcxproj 79 80 # Ignore generated Makefiles 81 src/Makefile 82 *.Makefile 83 *.target.mk 84 85 # Ignore compiled Python files. 86 *.pyc 87 88 # Ignore directories gclient syncs. 89 src/testing 90 src/third_party/protobuf