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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 }, | 46 }, |
47 { | 47 { |
48 # "Build" AppRTC, i.e. move it to the out/ dir where the browser test | 48 # "Build" AppRTC, i.e. move it to the out/ dir where the browser test |
49 # can find it. This is only done on runhooks. | 49 # can find it. This is only done on runhooks. |
50 "pattern": ".", | 50 "pattern": ".", |
51 "action" : ["python", | 51 "action" : ["python", |
52 "webrtc.DEPS/copy_apprtc.py"], | 52 "webrtc.DEPS/copy_apprtc.py"], |
53 }, | 53 }, |
54 { | 54 { |
55 # 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. |
| 56 # These resources are used by the Android bots. |
56 "pattern": "\\.sha1", | 57 "pattern": "\\.sha1", |
57 "action": ["download_from_google_storage", | 58 "action": ["download_from_google_storage", |
58 "--directory", | 59 "--directory", |
59 "--recursive", | 60 "--recursive", |
60 "--num_threads=10", | 61 "--num_threads=10", |
61 "--bucket", "chromium-webrtc-resources", | 62 "--bucket", "chromium-webrtc-resources", |
62 "src/resources"], | 63 "src/resources"], |
63 }, | 64 }, |
64 { | 65 { |
| 66 # Download video files used by the video quality browser test. |
| 67 # (chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc) |
| 68 "pattern": "\\.sha1", |
| 69 "action": ["download_from_google_storage", |
| 70 "--directory", |
| 71 "--recursive", |
| 72 "--num_threads=10", |
| 73 "--bucket", "chromium-webrtc-resources", |
| 74 "webrtc.DEPS/webrtc_videos"], |
| 75 }, |
| 76 { |
65 # Download firefox for the Firefox AppRTC test. | 77 # Download firefox for the Firefox AppRTC test. |
66 "pattern": ".", | 78 "pattern": ".", |
67 "action" : ["python", | 79 "action" : ["python", |
68 "webrtc.DEPS/download_firefox_nightly.py", | 80 "webrtc.DEPS/download_firefox_nightly.py", |
69 "-t", | 81 "-t", |
70 "firefox-nightly"], | 82 "firefox-nightly"], |
71 }, | 83 }, |
72 ] | 84 ] |
OLD | NEW |