| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 (Var("googlecode_url") % "googletest") + "/trunk@629", | 74 (Var("googlecode_url") % "googletest") + "/trunk@629", |
| 75 | 75 |
| 76 "src/testing/gmock": | 76 "src/testing/gmock": |
| 77 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 77 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 78 | 78 |
| 79 "src/third_party/angle_dx11": | 79 "src/third_party/angle_dx11": |
| 80 Var("chromium_git") + | 80 Var("chromium_git") + |
| 81 "/external/angle.git@9c318342233f68b915d39c8f1f181b9ef545c4db", | 81 "/external/angle.git@9c318342233f68b915d39c8f1f181b9ef545c4db", |
| 82 | 82 |
| 83 "src/third_party/trace-viewer": | 83 "src/third_party/trace-viewer": |
| 84 (Var("googlecode_url") % "trace-viewer") + "/trunk@1055", | 84 (Var("googlecode_url") % "trace-viewer") + "/trunk@1057", |
| 85 | 85 |
| 86 "src/third_party/WebKit": | 86 "src/third_party/WebKit": |
| 87 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 87 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
| 88 | 88 |
| 89 "src/third_party/icu": | 89 "src/third_party/icu": |
| 90 "/trunk/deps/third_party/icu46@228516", | 90 "/trunk/deps/third_party/icu46@228516", |
| 91 | 91 |
| 92 "src/third_party/libexif/sources": | 92 "src/third_party/libexif/sources": |
| 93 "/trunk/deps/third_party/libexif/sources@146817", | 93 "/trunk/deps/third_party/libexif/sources@146817", |
| 94 | 94 |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 "pattern": ".", | 645 "pattern": ".", |
| 646 "action": ["python", "src/build/gyp_chromium"], | 646 "action": ["python", "src/build/gyp_chromium"], |
| 647 }, | 647 }, |
| 648 { | 648 { |
| 649 # Check for landmines (reasons to clobber the build). | 649 # Check for landmines (reasons to clobber the build). |
| 650 "name": "landmines", | 650 "name": "landmines", |
| 651 "pattern": ".", | 651 "pattern": ".", |
| 652 "action": ["python", "src/build/landmines.py"], | 652 "action": ["python", "src/build/landmines.py"], |
| 653 }, | 653 }, |
| 654 ] | 654 ] |
| OLD | NEW |