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

Side by Side Diff: DEPS

Issue 316013004: Use Chromium Git mirror for AppRTC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS/
Patch Set: Created 6 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 | copy_apprtc.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # DEPS file that pulls down dependencies that are needed to build and 1 # DEPS file that pulls down dependencies that are needed to build and
2 # execute WebRTC Android tests from a Chromium checkout. 2 # execute WebRTC Android tests from a Chromium checkout.
3 3
4 vars = { 4 vars = {
5 "chromium_git": "https://chromium.googlesource.com",
5 # Use this googlecode_url variable only if there is an internal mirror for it. 6 # 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. 7 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 8 "googlecode_url": "http://%s.googlecode.com/svn",
8 } 9 }
9 10
10 deps = { 11 deps = {
11 "src/third_party/webrtc_apprtc": 12 "webrtc-samples":
12 (Var("googlecode_url") % "webrtc") + "/trunk/samples/js", 13 Var("chromium_git") + "/external/webrtc-samples.git",
13 "webrtc.DEPS/third_party/manifestdestiny": 14 "webrtc.DEPS/third_party/manifestdestiny":
14 "/trunk/deps/third_party/manifestdestiny@240893", 15 "/trunk/deps/third_party/manifestdestiny@240893",
15 "webrtc.DEPS/third_party/mozdownload": 16 "webrtc.DEPS/third_party/mozdownload":
16 "/trunk/deps/third_party/mozdownload@240893", 17 "/trunk/deps/third_party/mozdownload@240893",
17 "webrtc.DEPS/third_party/mozinfo": 18 "webrtc.DEPS/third_party/mozinfo":
18 "/trunk/deps/third_party/mozinfo@240893", 19 "/trunk/deps/third_party/mozinfo@240893",
19 "webrtc.DEPS/third_party/mozprocess": 20 "webrtc.DEPS/third_party/mozprocess":
20 "/trunk/deps/third_party/mozprocess@240893", 21 "/trunk/deps/third_party/mozprocess@240893",
21 "webrtc.DEPS/third_party/mozprofile": 22 "webrtc.DEPS/third_party/mozprofile":
22 "/trunk/deps/third_party/mozprofile@240893", 23 "/trunk/deps/third_party/mozprofile@240893",
23 "webrtc.DEPS/third_party/mozrunner": 24 "webrtc.DEPS/third_party/mozrunner":
24 "/trunk/deps/third_party/mozrunner@240893", 25 "/trunk/deps/third_party/mozrunner@240893",
25 } 26 }
26 27
27 deps_os = { 28 deps_os = {
28 "android": { 29 "android": {
29 "src/data": 30 "src/data":
30 (Var("googlecode_url") % "webrtc") + "/trunk/data", 31 (Var("googlecode_url") % "webrtc") + "/trunk/data",
31 "src/resources": 32 "src/resources":
32 (Var("googlecode_url") % "webrtc") + "/trunk/resources", 33 (Var("googlecode_url") % "webrtc") + "/trunk/resources",
33 "src/third_party/gflags": 34 "src/third_party/gflags":
34 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", 35 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags",
35 "src/third_party/gflags/src": 36 "src/third_party/gflags/src":
36 "http://gflags.googlecode.com/svn/trunk/src@84", 37 "http://gflags.googlecode.com/svn/trunk/src@84",
37 }, 38 },
38 } 39 }
39 40
40 hooks = [ 41 hooks = [
41 { 42 {
(...skipping 30 matching lines...) Expand all
72 "--recursive", 73 "--recursive",
73 "--num_threads=10", 74 "--num_threads=10",
74 "--bucket", "chromium-webrtc-resources", 75 "--bucket", "chromium-webrtc-resources",
75 "src/chrome/test/data/webrtc/resources"], 76 "src/chrome/test/data/webrtc/resources"],
76 }, 77 },
77 { 78 {
78 # Download firefox for the Firefox AppRTC test. 79 # Download firefox for the Firefox AppRTC test.
79 "pattern": ".", 80 "pattern": ".",
80 "action" : ["python", 81 "action" : ["python",
81 "webrtc.DEPS/download_firefox_nightly.py", 82 "webrtc.DEPS/download_firefox_nightly.py",
82 "-t", 83 "-t",
83 "firefox-nightly"], 84 "firefox-nightly"],
84 }, 85 },
85 ] 86 ]
OLDNEW
« no previous file with comments | « no previous file | copy_apprtc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698