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

Side by Side Diff: DEPS

Issue 8226007: WORK_IN_PROGRESS: Do effective TLD lookups using a suffix trie (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 months 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
« no previous file with comments | « .DEPS.git ('k') | net/base/registry_controlled_domain.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "96490", 7 "webkit_revision": "96490",
8 "chromium_git": "http://git.chromium.org/git", 8 "chromium_git": "http://git.chromium.org/git",
9 "swig_revision": "69281", 9 "swig_revision": "69281",
10 "nacl_revision": "6815", 10 "nacl_revision": "6815",
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 Var("nacl_tools_revision"), 275 Var("nacl_tools_revision"),
276 276
277 "src/third_party/webrtc": 277 "src/third_party/webrtc":
278 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), 278 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"),
279 279
280 "src/third_party/mozc/session": 280 "src/third_party/mozc/session":
281 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", 281 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58",
282 282
283 "src/third_party/smhasher/src": 283 "src/third_party/smhasher/src":
284 (Var("googlecode_url") % "smhasher") + "/trunk@136", 284 (Var("googlecode_url") % "smhasher") + "/trunk@136",
285
286 "src/net/third_party/domain-registry-provider":
287 "http://domain-registry-provider.googlecode.com/svn/trunk@25",
285 } 288 }
286 289
287 290
288 deps_os = { 291 deps_os = {
289 "win": { 292 "win": {
290 "src/chrome/tools/test/reference_build/chrome_win": 293 "src/chrome/tools/test/reference_build/chrome_win":
291 "/trunk/deps/reference_builds/chrome_win@89574", 294 "/trunk/deps/reference_builds/chrome_win@89574",
292 295
293 "src/third_party/cygwin": 296 "src/third_party/cygwin":
294 "/trunk/deps/third_party/cygwin@66844", 297 "/trunk/deps/third_party/cygwin@66844",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 # which takes ~20s, but clang speeds up builds by more than 20s. 440 # which takes ~20s, but clang speeds up builds by more than 20s.
438 "pattern": ".", 441 "pattern": ".",
439 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 442 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
440 }, 443 },
441 { 444 {
442 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 445 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
443 "pattern": ".", 446 "pattern": ".",
444 "action": ["python", "src/build/gyp_chromium"], 447 "action": ["python", "src/build/gyp_chromium"],
445 }, 448 },
446 ] 449 ]
OLDNEW
« no previous file with comments | « .DEPS.git ('k') | net/base/registry_controlled_domain.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698