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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 # These resources are used by the Android bots. | 56 # These resources are used by the Android bots. |
57 "pattern": "\\.sha1", | 57 "pattern": "\\.sha1", |
58 "action": ["download_from_google_storage", | 58 "action": ["download_from_google_storage", |
59 "--directory", | 59 "--directory", |
60 "--recursive", | 60 "--recursive", |
61 "--num_threads=10", | 61 "--num_threads=10", |
62 "--bucket", "chromium-webrtc-resources", | 62 "--bucket", "chromium-webrtc-resources", |
63 "src/resources"], | 63 "src/resources"], |
64 }, | 64 }, |
65 { | 65 { |
66 # Download video files used by the video quality browser test. | 66 # Download media files and tools used by the webrtc quality browser tests, |
67 # (chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc) | 67 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and |
| 68 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. |
68 "pattern": "\\.sha1", | 69 "pattern": "\\.sha1", |
69 "action": ["download_from_google_storage", | 70 "action": ["download_from_google_storage", |
70 "--directory", | 71 "--directory", |
71 "--recursive", | 72 "--recursive", |
72 "--num_threads=10", | 73 "--num_threads=10", |
73 "--bucket", "chromium-webrtc-resources", | 74 "--bucket", "chromium-webrtc-resources", |
74 "webrtc.DEPS/webrtc_videos"], | 75 "src/chrome/test/data/webrtc/resources"], |
75 }, | 76 }, |
76 { | 77 { |
77 # Download firefox for the Firefox AppRTC test. | 78 # Download firefox for the Firefox AppRTC test. |
78 "pattern": ".", | 79 "pattern": ".", |
79 "action" : ["python", | 80 "action" : ["python", |
80 "webrtc.DEPS/download_firefox_nightly.py", | 81 "webrtc.DEPS/download_firefox_nightly.py", |
81 "-t", | 82 "-t", |
82 "firefox-nightly"], | 83 "firefox-nightly"], |
83 }, | 84 }, |
84 ] | 85 ] |
OLD | NEW |