| OLD | NEW |
| 1 # Copyright 2010 Google Inc. All rights reserved. | 1 # Copyright 2010 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 # This is used to mimic the svn:externals mechanism for gclient (both Git and | 29 # This is used to mimic the svn:externals mechanism for gclient (both Git and |
| 30 # SVN) based checkouts of Breakpad. As such, its use is entirely optional. If | 30 # SVN) based checkouts of Breakpad. As such, its use is entirely optional. If |
| 31 # using a manually managed SVN checkout as opposed to a gclient managed checkout | 31 # using a manually managed SVN checkout as opposed to a gclient managed checkout |
| 32 # you can still use the hooks mechanism for generating project files by calling | 32 # you can still use the hooks mechanism for generating project files by calling |
| 33 # 'gclient runhooks' rather than 'gclient sync'. | 33 # 'gclient runhooks' rather than 'gclient sync'. |
| 34 | 34 |
| 35 deps = { | 35 deps = { |
| 36 # Logging code. | 36 # Logging code. |
| 37 "src/src/third_party/glog": | 37 "src/src/third_party/glog": |
| 38 "http://google-glog.googlecode.com/svn/trunk@97", | 38 "https://github.com/google/glog.git" + |
| 39 "@ac3e91896917b5d9e8b4467bd912b20e8668488a", |
| 39 | 40 |
| 40 # Testing libraries and utilities. | 41 # Testing libraries and utilities. |
| 41 "src/src/testing": "http://googlemock.googlecode.com/svn/trunk@408", | 42 "src/src/testing": |
| 42 "src/src/testing/gtest": "http://googletest.googlecode.com/svn/trunk@615", | 43 "https://github.com/google/googlemock.git" + |
| 44 "@ada23475e27babd85fb9c13250243f6acfd3ffd8", |
| 45 "src/src/testing/gtest": |
| 46 "https://github.com/google/googletest.git" + |
| 47 "@a3b859162dd7a4a1798cf8753a03098f2cbdb62e", |
| 43 | 48 |
| 44 # Protobuf. | 49 # Protobuf. |
| 45 "src/src/third_party/protobuf/protobuf": | 50 "src/src/third_party/protobuf/protobuf": |
| 46 "http://protobuf.googlecode.com/svn/trunk@407", | 51 "https://github.com/google/protobuf.git" + |
| 52 "@cb6dd4ef5f82e41e06179dcd57d3b1d9246ad6ac", |
| 47 | 53 |
| 48 # GYP project generator. | 54 # GYP project generator. |
| 49 "src/src/tools/gyp": "http://gyp.googlecode.com/svn/trunk@1886", | 55 "src/src/tools/gyp": |
| 56 "https://chromium.googlesource.com/external/gyp/" + |
| 57 "@e8ab0833a42691cd2184bd4c45d779e43821d3e0", |
| 50 | 58 |
| 51 # Linux syscall support. | 59 # Linux syscall support. |
| 52 "src/src/third_party/lss": | 60 "src/src/third_party/lss": |
| 53 "https://chromium.googlesource.com/linux-syscall-support/" + | 61 "https://chromium.googlesource.com/linux-syscall-support/" + |
| 54 "@9292030109847793f7a6689adac1ddafb412fe14" | 62 "@9292030109847793f7a6689adac1ddafb412fe14" |
| 55 } | 63 } |
| 56 | 64 |
| 57 hooks = [ | 65 hooks = [ |
| 58 { | 66 { |
| 59 # TODO(chrisha): Fix the GYP files so that they work without | 67 # TODO(chrisha): Fix the GYP files so that they work without |
| 60 # --no-circular-check. | 68 # --no-circular-check. |
| 61 "pattern": ".", | 69 "pattern": ".", |
| 62 "action": ["python", | 70 "action": ["python", |
| 63 "src/src/tools/gyp/gyp_main.py", | 71 "src/src/tools/gyp/gyp_main.py", |
| 64 "--no-circular-check", | 72 "--no-circular-check", |
| 65 "src/src/client/windows/breakpad_client.gyp"], | 73 "src/src/client/windows/breakpad_client.gyp"], |
| 66 }, | 74 }, |
| 67 ] | 75 ] |
| OLD | NEW |