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 18 matching lines...) Expand all Loading... |
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 "https://github.com/google/glog.git" + | 38 "https://github.com/google/glog.git" + |
39 "@ac3e91896917b5d9e8b4467bd912b20e8668488a", | 39 "@v0.3.4", |
40 | 40 |
41 # Testing libraries and utilities. | 41 # Testing libraries and utilities. |
42 "src/src/testing": | 42 "src/src/testing": |
43 "https://github.com/google/googlemock.git" + | 43 "https://github.com/google/googlemock.git" + |
44 "@ada23475e27babd85fb9c13250243f6acfd3ffd8", | 44 "@release-1.7.0", |
45 "src/src/testing/gtest": | 45 "src/src/testing/gtest": |
46 "https://github.com/google/googletest.git" + | 46 "https://github.com/google/googletest.git" + |
47 "@a3b859162dd7a4a1798cf8753a03098f2cbdb62e", | 47 "@release-1.7.0", |
48 | 48 |
49 # Protobuf. | 49 # Protobuf. |
50 "src/src/third_party/protobuf/protobuf": | 50 "src/src/third_party/protobuf/protobuf": |
51 "https://github.com/google/protobuf.git" + | 51 "https://github.com/google/protobuf.git" + |
52 "@cb6dd4ef5f82e41e06179dcd57d3b1d9246ad6ac", | 52 "@cb6dd4ef5f82e41e06179dcd57d3b1d9246ad6ac", |
53 | 53 |
54 # GYP project generator. | 54 # GYP project generator. |
55 "src/src/tools/gyp": | 55 "src/src/tools/gyp": |
56 "https://chromium.googlesource.com/external/gyp/" + | 56 "https://chromium.googlesource.com/external/gyp/" + |
57 "@e8ab0833a42691cd2184bd4c45d779e43821d3e0", | 57 "@e8ab0833a42691cd2184bd4c45d779e43821d3e0", |
58 | 58 |
59 # Linux syscall support. | 59 # Linux syscall support. |
60 "src/src/third_party/lss": | 60 "src/src/third_party/lss": |
61 "https://chromium.googlesource.com/linux-syscall-support/" + | 61 "https://chromium.googlesource.com/linux-syscall-support/" + |
62 "@9292030109847793f7a6689adac1ddafb412fe14" | 62 "@9292030109847793f7a6689adac1ddafb412fe14" |
63 } | 63 } |
64 | 64 |
65 hooks = [ | 65 hooks = [ |
66 { | 66 { |
67 # TODO(chrisha): Fix the GYP files so that they work without | 67 # TODO(chrisha): Fix the GYP files so that they work without |
68 # --no-circular-check. | 68 # --no-circular-check. |
69 "pattern": ".", | 69 "pattern": ".", |
70 "action": ["python", | 70 "action": ["python", |
71 "src/src/tools/gyp/gyp_main.py", | 71 "src/src/tools/gyp/gyp_main.py", |
72 "--no-circular-check", | 72 "--no-circular-check", |
73 "src/src/client/windows/breakpad_client.gyp"], | 73 "src/src/client/windows/breakpad_client.gyp"], |
74 }, | 74 }, |
75 ] | 75 ] |
OLD | NEW |