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

Side by Side Diff: DEPS

Issue 16869007: Pull ANGLE from new git repository. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 # 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 "src/sdch/open-vcdiff": 60 "src/sdch/open-vcdiff":
61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", 61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42",
62 62
63 "src/testing/gtest": 63 "src/testing/gtest":
64 (Var("googlecode_url") % "googletest") + "/trunk@629", 64 (Var("googlecode_url") % "googletest") + "/trunk@629",
65 65
66 "src/testing/gmock": 66 "src/testing/gmock":
67 (Var("googlecode_url") % "googlemock") + "/trunk@410", 67 (Var("googlecode_url") % "googlemock") + "/trunk@410",
68 68
69 "src/third_party/angle": 69 # TODO(apatrick): Remove dependency on old DX9 version of ANGLE when
70 (Var("googlecode_url") % "angleproject") + "/trunk@2249", 70 # transition to new DX11 version is complete.
71 #"src/third_party/angle":
72 # (Var("googlecode_url") % "angleproject") + "/trunk@2249",
73
74 "src/third_party/angle_dx11":
75 "https://code.google.com" +
76 "/p/angleproject.git@d089bd98e59b037f7f61df926172b5f25e3556cd",
71 77
72 "src/third_party/trace-viewer": 78 "src/third_party/trace-viewer":
73 (Var("googlecode_url") % "trace-viewer") + "/trunk@623", 79 (Var("googlecode_url") % "trace-viewer") + "/trunk@623",
74 80
75 "src/third_party/WebKit": 81 "src/third_party/WebKit":
76 Var("webkit_trunk") + "@" + Var("webkit_revision"), 82 Var("webkit_trunk") + "@" + Var("webkit_revision"),
77 83
78 "src/third_party/icu": 84 "src/third_party/icu":
79 "/trunk/deps/third_party/icu46@199252", 85 "/trunk/deps/third_party/icu46@199252",
80 86
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 616 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
611 "pattern": ".", 617 "pattern": ".",
612 "action": ["python", "src/build/gyp_chromium"], 618 "action": ["python", "src/build/gyp_chromium"],
613 }, 619 },
614 { 620 {
615 # Check for landmines (reasons to clobber the build). 621 # Check for landmines (reasons to clobber the build).
616 "pattern": ".", 622 "pattern": ".",
617 "action": ["python", "src/build/landmines.py"], 623 "action": ["python", "src/build/landmines.py"],
618 }, 624 },
619 ] 625 ]
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