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

Side by Side Diff: DEPS

Issue 14111003: Roll ANGLE from trunk@2040 to branches/chrome_trunk@2045. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 8 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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://src.chromium.org/blink/trunk", 9 "webkit_trunk": "http://src.chromium.org/blink/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "src/sdch/open-vcdiff": 69 "src/sdch/open-vcdiff":
70 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", 70 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42",
71 71
72 "src/testing/gtest": 72 "src/testing/gtest":
73 (Var("googlecode_url") % "googletest") + "/trunk@629", 73 (Var("googlecode_url") % "googletest") + "/trunk@629",
74 74
75 "src/testing/gmock": 75 "src/testing/gmock":
76 (Var("googlecode_url") % "googlemock") + "/trunk@410", 76 (Var("googlecode_url") % "googlemock") + "/trunk@410",
77 77
78 "src/third_party/angle": 78 "src/third_party/angle":
79 (Var("googlecode_url") % "angleproject") + "/trunk@2040", 79 (Var("googlecode_url") % "angleproject") + "/branches/chrome_trunk@2045",
80 80
81 "src/third_party/trace-viewer": 81 "src/third_party/trace-viewer":
82 (Var("googlecode_url") % "trace-viewer") + "/trunk@255", 82 (Var("googlecode_url") % "trace-viewer") + "/trunk@255",
83 83
84 # Note that this is *not* where we check out WebKit -- this just 84 # Note that this is *not* where we check out WebKit -- this just
85 # puts some extra files into place for the real WebKit checkout to 85 # puts some extra files into place for the real WebKit checkout to
86 # happen. See lines mentioning "webkit_revision" for the real 86 # happen. See lines mentioning "webkit_revision" for the real
87 # WebKit checkout. 87 # WebKit checkout.
88 "src/third_party/WebKit": 88 "src/third_party/WebKit":
89 "/trunk/deps/third_party/WebKit@76115", 89 "/trunk/deps/third_party/WebKit@76115",
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
695 "pattern": ".", 695 "pattern": ".",
696 "action": ["python", "src/build/gyp_chromium"], 696 "action": ["python", "src/build/gyp_chromium"],
697 }, 697 },
698 { 698 {
699 # Check for landmines (reasons to clobber the build). 699 # Check for landmines (reasons to clobber the build).
700 "pattern": ".", 700 "pattern": ".",
701 "action": ["python", "src/build/landmines.py"], 701 "action": ["python", "src/build/landmines.py"],
702 }, 702 },
703 ] 703 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698