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 = { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 { | 42 { |
43 # Download test resources, i.e. video and audio files from Google Storage. | 43 # Download test resources, i.e. video and audio files from Google Storage. |
44 "pattern": "\\.sha1", | 44 "pattern": "\\.sha1", |
45 "action": ["download_from_google_storage", | 45 "action": ["download_from_google_storage", |
46 "--directory", | 46 "--directory", |
47 "--recursive", | 47 "--recursive", |
48 "--num_threads=10", | 48 "--num_threads=10", |
49 "--bucket", "chromium-webrtc-resources", | 49 "--bucket", "chromium-webrtc-resources", |
50 "src/resources"], | 50 "src/resources"], |
51 }, | 51 }, |
| 52 { |
| 53 # Download firefox for the Firefox AppRTC test. |
| 54 "pattern": ".", |
| 55 "action" : ["python", |
| 56 "webrtc.DEPS/download_firefox_nightly.py", |
| 57 "-t", |
| 58 "firefox-nightly"], |
| 59 }, |
52 ] | 60 ] |
OLD | NEW |