OLD | NEW |
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 "webrtc.DEPS/third_party/manifestdestiny": |
| 14 "/trunk/deps/third_party/manifestdestiny@240893", |
| 15 "webrtc.DEPS/third_party/mozdownload": |
| 16 "/trunk/deps/third_party/mozdownload@240893", |
| 17 "webrtc.DEPS/third_party/mozinfo": |
| 18 "/trunk/deps/third_party/mozinfo@240893", |
| 19 "webrtc.DEPS/third_party/mozprocess": |
| 20 "/trunk/deps/third_party/mozprocess@240893", |
| 21 "webrtc.DEPS/third_party/mozprofile": |
| 22 "/trunk/deps/third_party/mozprofile@240893", |
| 23 "webrtc.DEPS/third_party/mozrunner": |
| 24 "/trunk/deps/third_party/mozrunner@240893", |
13 } | 25 } |
14 | 26 |
15 deps_os = { | 27 deps_os = { |
16 "android": { | 28 "android": { |
17 "src/data": | 29 "src/data": |
18 (Var("googlecode_url") % "webrtc") + "/trunk/data", | 30 (Var("googlecode_url") % "webrtc") + "/trunk/data", |
19 "src/resources": | 31 "src/resources": |
20 (Var("googlecode_url") % "webrtc") + "/trunk/resources", | 32 (Var("googlecode_url") % "webrtc") + "/trunk/resources", |
21 "src/third_party/gflags": | 33 "src/third_party/gflags": |
22 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", | 34 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", |
(...skipping 19 matching lines...) Expand all Loading... |
42 { | 54 { |
43 # Download test resources, i.e. video and audio files from Google Storage. | 55 # Download test resources, i.e. video and audio files from Google Storage. |
44 "pattern": "\\.sha1", | 56 "pattern": "\\.sha1", |
45 "action": ["download_from_google_storage", | 57 "action": ["download_from_google_storage", |
46 "--directory", | 58 "--directory", |
47 "--recursive", | 59 "--recursive", |
48 "--num_threads=10", | 60 "--num_threads=10", |
49 "--bucket", "chromium-webrtc-resources", | 61 "--bucket", "chromium-webrtc-resources", |
50 "src/resources"], | 62 "src/resources"], |
51 }, | 63 }, |
| 64 { |
| 65 # Download firefox for the Firefox AppRTC test. |
| 66 "pattern": ".", |
| 67 "action" : ["python", |
| 68 "webrtc.DEPS/download_firefox_nightly.py", |
| 69 "-t", |
| 70 "firefox-nightly"], |
| 71 }, |
52 ] | 72 ] |
OLD | NEW |