OLD | NEW |
1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
2 # that gclient uses under git. | 2 # that gclient uses under git. |
3 # | 3 # |
4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
5 # | 5 # |
6 # To test manually, run: | 6 # To test manually, run: |
7 # python tools/deps2git/deps2git.py -o .DEPS.git | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 | 240 |
241 "src/third_party/jsoncpp/source/include": | 241 "src/third_party/jsoncpp/source/include": |
242 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 242 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
243 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), | 243 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), |
244 | 244 |
245 "src/third_party/jsoncpp/source/src/lib_json": | 245 "src/third_party/jsoncpp/source/src/lib_json": |
246 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 246 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
247 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 247 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
248 | 248 |
249 "src/third_party/libyuv": | 249 "src/third_party/libyuv": |
250 (Var("googlecode_url") % "libyuv") + "/trunk@949", | 250 (Var("googlecode_url") % "libyuv") + "/trunk@967", |
251 | 251 |
252 "src/third_party/smhasher/src": | 252 "src/third_party/smhasher/src": |
253 (Var("googlecode_url") % "smhasher") + "/trunk@151", | 253 (Var("googlecode_url") % "smhasher") + "/trunk@151", |
254 | 254 |
255 "src/third_party/libaddressinput/src/cpp": | 255 "src/third_party/libaddressinput/src/cpp": |
256 (Var("googlecode_url") % "libaddressinput") + "/trunk/cpp@" + | 256 (Var("googlecode_url") % "libaddressinput") + "/trunk/cpp@" + |
257 Var("libaddressinput_revision"), | 257 Var("libaddressinput_revision"), |
258 "src/third_party/libaddressinput/src/testdata": | 258 "src/third_party/libaddressinput/src/testdata": |
259 (Var("googlecode_url") % "libaddressinput") + "/trunk/testdata@" + | 259 (Var("googlecode_url") % "libaddressinput") + "/trunk/testdata@" + |
260 Var("libaddressinput_revision"), | 260 Var("libaddressinput_revision"), |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 "pattern": ".", | 746 "pattern": ".", |
747 "action": ["python", "src/build/gyp_chromium"], | 747 "action": ["python", "src/build/gyp_chromium"], |
748 }, | 748 }, |
749 { | 749 { |
750 # Check for landmines (reasons to clobber the build). | 750 # Check for landmines (reasons to clobber the build). |
751 "name": "landmines", | 751 "name": "landmines", |
752 "pattern": ".", | 752 "pattern": ".", |
753 "action": ["python", "src/build/landmines.py"], | 753 "action": ["python", "src/build/landmines.py"], |
754 }, | 754 }, |
755 ] | 755 ] |
OLD | NEW |