| OLD | NEW |
| 1 # Copyright 2014 Google Inc. All rights reserved. | 1 # Copyright 2014 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | 28 |
| 29 # Ignore other VCSs. | 29 # Ignore other VCSs. |
| 30 .svn/ | 30 .svn/ |
| 31 | 31 |
| 32 # Ignore common compiled artifacts. | 32 # Ignore common compiled artifacts. |
| 33 *~ | 33 *~ |
| 34 *.dwo |
| 34 *.o | 35 *.o |
| 35 lib*.a | 36 lib*.a |
| 36 /breakpad.pc | 37 /breakpad.pc |
| 37 /breakpad-client.pc | 38 /breakpad-client.pc |
| 38 /src/client/linux/linux_client_unittest_shlib | 39 /src/client/linux/linux_client_unittest_shlib |
| 39 /src/client/linux/linux_dumper_unittest_helper | 40 /src/client/linux/linux_dumper_unittest_helper |
| 40 /src/processor/microdump_stackwalk | 41 /src/processor/microdump_stackwalk |
| 41 /src/processor/minidump_dump | 42 /src/processor/minidump_dump |
| 42 /src/processor/minidump_stackwalk | 43 /src/processor/minidump_stackwalk |
| 43 /src/tools/linux/core2md/core2md | 44 /src/tools/linux/core2md/core2md |
| (...skipping 29 matching lines...) Expand all Loading... |
| 73 | 74 |
| 74 # Ignore compiled Python files. | 75 # Ignore compiled Python files. |
| 75 *.pyc | 76 *.pyc |
| 76 | 77 |
| 77 # Ignore directories gclient syncs. | 78 # Ignore directories gclient syncs. |
| 78 src/testing | 79 src/testing |
| 79 src/third_party/glog | 80 src/third_party/glog |
| 80 src/third_party/lss | 81 src/third_party/lss |
| 81 src/third_party/protobuf | 82 src/third_party/protobuf |
| 82 src/tools/gyp | 83 src/tools/gyp |
| OLD | NEW |