| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 315 |
| 316 "src/third_party/gperf": | 316 "src/third_party/gperf": |
| 317 "/trunk/deps/third_party/gperf@147304", | 317 "/trunk/deps/third_party/gperf@147304", |
| 318 | 318 |
| 319 "src/third_party/perl": | 319 "src/third_party/perl": |
| 320 "/trunk/deps/third_party/perl@147900", | 320 "/trunk/deps/third_party/perl@147900", |
| 321 | 321 |
| 322 "src/third_party/lighttpd": | 322 "src/third_party/lighttpd": |
| 323 "/trunk/deps/third_party/lighttpd@" + Var("lighttpd_revision"), | 323 "/trunk/deps/third_party/lighttpd@" + Var("lighttpd_revision"), |
| 324 | 324 |
| 325 # Chrome Frame related deps | |
| 326 "src/third_party/xulrunner-sdk": | |
| 327 "/trunk/deps/third_party/xulrunner-sdk@119756", | |
| 328 "src/chrome_frame/tools/test/reference_build/chrome_win": | |
| 329 "/trunk/deps/reference_builds/chrome_win@89574", | |
| 330 | |
| 331 # Parses Windows PE/COFF executable format. | 325 # Parses Windows PE/COFF executable format. |
| 332 "src/third_party/pefile": | 326 "src/third_party/pefile": |
| 333 (Var("googlecode_url") % "pefile") + "/trunk@63", | 327 (Var("googlecode_url") % "pefile") + "/trunk@63", |
| 334 | 328 |
| 335 # NSS, for SSLClientSocketNSS. | 329 # NSS, for SSLClientSocketNSS. |
| 336 "src/third_party/nss": | 330 "src/third_party/nss": |
| 337 "/trunk/deps/third_party/nss@" + Var("nss_revision"), | 331 "/trunk/deps/third_party/nss@" + Var("nss_revision"), |
| 338 | 332 |
| 339 "src/third_party/swig/win": | 333 "src/third_party/swig/win": |
| 340 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), | 334 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 "pattern": ".", | 709 "pattern": ".", |
| 716 "action": ["python", "src/build/gyp_chromium"], | 710 "action": ["python", "src/build/gyp_chromium"], |
| 717 }, | 711 }, |
| 718 { | 712 { |
| 719 # Check for landmines (reasons to clobber the build). | 713 # Check for landmines (reasons to clobber the build). |
| 720 "name": "landmines", | 714 "name": "landmines", |
| 721 "pattern": ".", | 715 "pattern": ".", |
| 722 "action": ["python", "src/build/landmines.py"], | 716 "action": ["python", "src/build/landmines.py"], |
| 723 }, | 717 }, |
| 724 ] | 718 ] |
| OLD | NEW |