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

Side by Side Diff: webrtc/webrtc.DEPS/DEPS

Issue 60513012: Update resource download for webrtc.DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 7 years, 1 month 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 # 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 # 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 } 8 }
9 9
10 deps = { 10 deps = {
11 "src/third_party/webrtc_apprtc": 11 "src/third_party/webrtc_apprtc":
12 (Var("googlecode_url") % "webrtc") + "/trunk/samples/js", 12 (Var("googlecode_url") % "webrtc") + "/trunk/samples/js",
13 } 13 }
14 14
15 deps_os = { 15 deps_os = {
16 "android": { 16 "android": {
17 "src/data": 17 "src/data":
18 (Var("googlecode_url") % "webrtc") + "/trunk/data", 18 (Var("googlecode_url") % "webrtc") + "/trunk/data",
19 "src/resources":
20 (Var("googlecode_url") % "webrtc") + "/trunk/resources",
19 "src/third_party/gflags": 21 "src/third_party/gflags":
20 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", 22 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags",
21 "src/third_party/gflags/src": 23 "src/third_party/gflags/src":
22 "http://gflags.googlecode.com/svn/trunk/src@84", 24 "http://gflags.googlecode.com/svn/trunk/src@84",
23 }, 25 },
24 } 26 }
25 27
26 hooks = [ 28 hooks = [
27 { 29 {
28 "pattern": ".", 30 "pattern": ".",
29 "action" : ["python", 31 "action" : ["python",
30 "webrtc.DEPS/download_appengine_sdk.py", 32 "webrtc.DEPS/download_appengine_sdk.py",
31 "webrtc.DEPS"], 33 "webrtc.DEPS"],
32 }, 34 },
33 { 35 {
34 # "Build" AppRTC, i.e. move it to the out/ dir where the browser test 36 # "Build" AppRTC, i.e. move it to the out/ dir where the browser test
35 # can find it. This is only done on runhooks. 37 # can find it. This is only done on runhooks.
36 "pattern": ".", 38 "pattern": ".",
37 "action" : ["python", 39 "action" : ["python",
38 "webrtc.DEPS/copy_apprtc.py"], 40 "webrtc.DEPS/copy_apprtc.py"],
39 } 41 },
42 {
43 # Download test resources, i.e. video and audio files from Google Storage.
44 "pattern": "\\.sha1",
45 "action": ["download_from_google_storage",
46 "--directory",
47 "--recursive",
48 "--num_threads=10",
49 "--bucket", "chromium-webrtc-resources",
50 "src/resources"],
51 },
40 ] 52 ]
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