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@a25382b9b37ddc50d19427b88ee2ad770d7f9f1d", | 86 "/angle/angle.git@a25382b9b37ddc50d19427b88ee2ad770d7f9f1d", |
87 | 87 |
88 "src/third_party/trace-viewer": | 88 "src/third_party/trace-viewer": |
89 (Var("googlecode_url") % "trace-viewer") + "/trunk@1120", | 89 (Var("googlecode_url") % "trace-viewer") + "/trunk@1158", |
tonyg
2014/02/19 16:44:32
Can we land this ahead of the rest of this patch?
| |
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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
754 "-s", "src/build/linux/bin/eu-strip.sha1", | 754 "-s", "src/build/linux/bin/eu-strip.sha1", |
755 ], | 755 ], |
756 }, | 756 }, |
757 { | 757 { |
758 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 758 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
759 "name": "gyp", | 759 "name": "gyp", |
760 "pattern": ".", | 760 "pattern": ".", |
761 "action": ["python", "src/build/gyp_chromium"], | 761 "action": ["python", "src/build/gyp_chromium"], |
762 }, | 762 }, |
763 ] | 763 ] |
OLD | NEW |