OLD | NEW |
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "108074", | 8 "webkit_revision": "108074", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 157 |
158 "src/third_party/WebKit/Tools/TestWebKitAPI": | 158 "src/third_party/WebKit/Tools/TestWebKitAPI": |
159 Var("webkit_trunk") + "/Tools/TestWebKitAPI@" + Var("webkit_revision"), | 159 Var("webkit_trunk") + "/Tools/TestWebKitAPI@" + Var("webkit_revision"), |
160 | 160 |
161 "src/third_party/ots": | 161 "src/third_party/ots": |
162 (Var("googlecode_url") % "ots") + "/trunk@80", | 162 (Var("googlecode_url") % "ots") + "/trunk@80", |
163 | 163 |
164 "src/tools/page_cycler/acid3": | 164 "src/tools/page_cycler/acid3": |
165 "/trunk/deps/page_cycler/acid3@102714", | 165 "/trunk/deps/page_cycler/acid3@102714", |
166 | 166 |
| 167 "src/chrome/test/data/perf/canvas_bench": |
| 168 "/trunk/deps/canvas_bench@122587", |
| 169 |
167 "src/chrome/test/data/perf/frame_rate/content": | 170 "src/chrome/test/data/perf/frame_rate/content": |
168 "/trunk/deps/frame_rate/content@93671", | 171 "/trunk/deps/frame_rate/content@93671", |
169 | 172 |
170 "src/third_party/bidichecker": | 173 "src/third_party/bidichecker": |
171 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 174 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
172 | 175 |
173 "src/third_party/v8-i18n": | 176 "src/third_party/v8-i18n": |
174 (Var("googlecode_url") % "v8-i18n") + "/trunk@7", | 177 (Var("googlecode_url") % "v8-i18n") + "/trunk@7", |
175 | 178 |
176 # When roll to another webgl conformance tests revision, please goto | 179 # When roll to another webgl conformance tests revision, please goto |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 "pattern": ".", | 517 "pattern": ".", |
515 "action": ["python", "src/build/util/lastchange.py", | 518 "action": ["python", "src/build/util/lastchange.py", |
516 "-o", "src/build/util/LASTCHANGE"], | 519 "-o", "src/build/util/LASTCHANGE"], |
517 }, | 520 }, |
518 { | 521 { |
519 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 522 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
520 "pattern": ".", | 523 "pattern": ".", |
521 "action": ["python", "src/build/gyp_chromium"], | 524 "action": ["python", "src/build/gyp_chromium"], |
522 }, | 525 }, |
523 ] | 526 ] |
OLD | NEW |