Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: DEPS

Issue 11363170: Add an accessibility audit test for WebUI pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving accessibility-developer-tools to src/third_party Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # When adding a new dependency, please update the top-level .gitignore file 1 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory. 2 # to list the dependency's destination directory.
3 3
4 vars = { 4 vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it. 5 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry. 6 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 7 "googlecode_url": "http://%s.googlecode.com/svn",
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 "/trunk/tools/deps2git@163971", 308 "/trunk/tools/deps2git@163971",
309 309
310 "src/third_party/webpagereplay": 310 "src/third_party/webpagereplay":
311 (Var("googlecode_url") % "web-page-replay") + "/trunk@501", 311 (Var("googlecode_url") % "web-page-replay") + "/trunk@501",
312 312
313 "src/third_party/pywebsocket/src": 313 "src/third_party/pywebsocket/src":
314 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", 314 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662",
315 315
316 "src/third_party/opus/src": 316 "src/third_party/opus/src":
317 "/trunk/deps/third_party/opus@165487", 317 "/trunk/deps/third_party/opus@165487",
318
319 "src/third_party/accessibility-developer-tools":
320 Var("chromium_git") + "/external/accessibility-developer-tools.git@c77344d",
318 } 321 }
319 322
320 323
321 deps_os = { 324 deps_os = {
322 "win": { 325 "win": {
323 "src/chrome/tools/test/reference_build/chrome_win": 326 "src/chrome/tools/test/reference_build/chrome_win":
324 "/trunk/deps/reference_builds/chrome_win@137747", 327 "/trunk/deps/reference_builds/chrome_win@137747",
325 328
326 "src/third_party/cygwin": 329 "src/third_party/cygwin":
327 "/trunk/deps/third_party/cygwin@133786", 330 "/trunk/deps/third_party/cygwin@133786",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 625 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
623 "pattern": ".", 626 "pattern": ".",
624 "action": ["python", "src/build/gyp_chromium"], 627 "action": ["python", "src/build/gyp_chromium"],
625 }, 628 },
626 { 629 {
627 # Check for landmines (reasons to clobber the build). 630 # Check for landmines (reasons to clobber the build).
628 "pattern": ".", 631 "pattern": ".",
629 "action": ["python", "src/build/landmines.py"], 632 "action": ["python", "src/build/landmines.py"],
630 }, 633 },
631 ] 634 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698