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

Side by Side Diff: DEPS

Issue 9316002: linux: use an in-tree copy of gold by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new gold 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": "106642", 8 "webkit_revision": "106642",
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",
417 }, 420 },
418 } 421 }
419 422
420 423
421 include_rules = [ 424 include_rules = [
422 # Everybody can use some things. 425 # Everybody can use some things.
423 "+base", 426 "+base",
424 "+build", 427 "+build",
425 "+ipc", 428 "+ipc",
426 429
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 "pattern": ".", 495 "pattern": ".",
493 "action": ["python", "src/build/util/lastchange.py", 496 "action": ["python", "src/build/util/lastchange.py",
494 "-o", "src/build/util/LASTCHANGE"], 497 "-o", "src/build/util/LASTCHANGE"],
495 }, 498 },
496 { 499 {
497 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 500 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
498 "pattern": ".", 501 "pattern": ".",
499 "action": ["python", "src/build/gyp_chromium"], 502 "action": ["python", "src/build/gyp_chromium"],
500 }, 503 },
501 ] 504 ]
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