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 specific 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 |
11 deps = { | 11 deps = { |
12 "webrtc-samples": | 12 "webrtc-samples": |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 }, | 86 }, |
87 { | 87 { |
88 # Download firefox for the Firefox AppRTC test. | 88 # Download firefox for the Firefox AppRTC test. |
89 "pattern": ".", | 89 "pattern": ".", |
90 "action" : ["python", | 90 "action" : ["python", |
91 "webrtc.DEPS/download_firefox_nightly.py", | 91 "webrtc.DEPS/download_firefox_nightly.py", |
92 "-t", | 92 "-t", |
93 "firefox-nightly"], | 93 "firefox-nightly"], |
94 }, | 94 }, |
95 ] | 95 ] |
OLD | NEW |