| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 (Var("googlecode_url") % "googletest") + "/trunk@643", | 79 (Var("googlecode_url") % "googletest") + "/trunk@643", |
| 80 | 80 |
| 81 "src/testing/gmock": | 81 "src/testing/gmock": |
| 82 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 82 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 83 | 83 |
| 84 "src/third_party/angle": | 84 "src/third_party/angle": |
| 85 Var("chromium_git") + | 85 Var("chromium_git") + |
| 86 "/angle/angle.git@fa63e947cb3eccf463648d21a05d5002c9b8adfa", | 86 "/angle/angle.git@fa63e947cb3eccf463648d21a05d5002c9b8adfa", |
| 87 | 87 |
| 88 "src/third_party/trace-viewer": | 88 "src/third_party/trace-viewer": |
| 89 (Var("googlecode_url") % "trace-viewer") + "/trunk@1194", | 89 (Var("googlecode_url") % "trace-viewer") + "/trunk@1203", |
| 90 | 90 |
| 91 "src/third_party/WebKit": | 91 "src/third_party/WebKit": |
| 92 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 92 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
| 93 | 93 |
| 94 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": | 94 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": |
| 95 Var("chromium_git") + | 95 Var("chromium_git") + |
| 96 "/external/w3c/web-platform-tests.git@ac4322a338be82b3d8b722917d6d3d057c0a3f
6a", | 96 "/external/w3c/web-platform-tests.git@ac4322a338be82b3d8b722917d6d3d057c0a3f
6a", |
| 97 | 97 |
| 98 "src/third_party/WebKit/LayoutTests/w3c/csswg-test": | 98 "src/third_party/WebKit/LayoutTests/w3c/csswg-test": |
| 99 Var("chromium_git") + | 99 Var("chromium_git") + |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 "-s", "src/build/linux/bin/eu-strip.sha1", | 757 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 758 ], | 758 ], |
| 759 }, | 759 }, |
| 760 { | 760 { |
| 761 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 761 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 762 "name": "gyp", | 762 "name": "gyp", |
| 763 "pattern": ".", | 763 "pattern": ".", |
| 764 "action": ["python", "src/build/gyp_chromium"], | 764 "action": ["python", "src/build/gyp_chromium"], |
| 765 }, | 765 }, |
| 766 ] | 766 ] |
| OLD | NEW |