| 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 "chromium_git": "https://chromium.googlesource.com", | 5 "chromium_git": "https://chromium.googlesource.com", |
| 6 # Use this googlecode_url variable only if there is an internal mirror for it. | 6 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 7 # If you do not know, use the full path while defining your new deps entry. | 7 # If you do not know, use the full path while defining your new deps entry. |
| 8 "googlecode_url": "http://%s.googlecode.com/svn", | 8 "googlecode_url": "http://%s.googlecode.com/svn", |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "--bucket", "chromium-webrtc-resources", | 63 "--bucket", "chromium-webrtc-resources", |
| 64 "src/resources"], | 64 "src/resources"], |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 # Download media files and tools used by the webrtc quality browser tests, | 67 # Download media files and tools used by the webrtc quality browser tests, |
| 68 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and | 68 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and |
| 69 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. | 69 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. |
| 70 "pattern": "\\.sha1", | 70 "pattern": "\\.sha1", |
| 71 "action": ["download_from_google_storage", | 71 "action": ["download_from_google_storage", |
| 72 "--directory", | 72 "--directory", |
| 73 "--recursive", | |
| 74 "--num_threads=10", | 73 "--num_threads=10", |
| 75 "--bucket", "chromium-webrtc-resources", | 74 "--bucket", "chromium-webrtc-resources", |
| 76 "src/chrome/test/data/webrtc/resources"], | 75 "src/chrome/test/data/webrtc/resources"], |
| 77 }, | 76 }, |
| 78 { | 77 { |
| 78 # Download tools. If you're not a googler, you need to comment this out |
| 79 # and install the required tools yourself in the tools folder. |
| 80 "pattern": "\\.sha1", |
| 81 "action": ["download_from_google_storage", |
| 82 "--directory", |
| 83 "--num_threads=10", |
| 84 "--bucket", "chrome-webrtc-resources", |
| 85 "src/chrome/test/data/webrtc/resources/tools"], |
| 86 }, |
| 87 { |
| 79 # Download firefox for the Firefox AppRTC test. | 88 # Download firefox for the Firefox AppRTC test. |
| 80 "pattern": ".", | 89 "pattern": ".", |
| 81 "action" : ["python", | 90 "action" : ["python", |
| 82 "webrtc.DEPS/download_firefox_nightly.py", | 91 "webrtc.DEPS/download_firefox_nightly.py", |
| 83 "-t", | 92 "-t", |
| 84 "firefox-nightly"], | 93 "firefox-nightly"], |
| 85 }, | 94 }, |
| 86 ] | 95 ] |
| OLD | NEW |