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

Side by Side Diff: DEPS

Issue 9328004: Revert 120385 - linux: use an in-tree copy of gold by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/common.gypi » ('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 "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": "106668", 8 "webkit_revision": "106668",
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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 407
408 "src/third_party/lss": 408 "src/third_party/lss":
409 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + 409 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" +
410 Var("lss_revision")), 410 Var("lss_revision")),
411 411
412 "src/third_party/openssl": 412 "src/third_party/openssl":
413 "/trunk/deps/third_party/openssl@118977", 413 "/trunk/deps/third_party/openssl@118977",
414 414
415 "src/third_party/WebKit/Tools/gdb": 415 "src/third_party/WebKit/Tools/gdb":
416 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), 416 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"),
417
418 "src/third_party/gold":
419 "/trunk/deps/third_party/gold@120368",
420 }, 417 },
421 } 418 }
422 419
423 420
424 include_rules = [ 421 include_rules = [
425 # Everybody can use some things. 422 # Everybody can use some things.
426 "+base", 423 "+base",
427 "+build", 424 "+build",
428 "+ipc", 425 "+ipc",
429 426
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 "pattern": ".", 492 "pattern": ".",
496 "action": ["python", "src/build/util/lastchange.py", 493 "action": ["python", "src/build/util/lastchange.py",
497 "-o", "src/build/util/LASTCHANGE"], 494 "-o", "src/build/util/LASTCHANGE"],
498 }, 495 },
499 { 496 {
500 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 497 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
501 "pattern": ".", 498 "pattern": ".",
502 "action": ["python", "src/build/gyp_chromium"], 499 "action": ["python", "src/build/gyp_chromium"],
503 }, 500 },
504 ] 501 ]
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698