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 specific tests from a Chromium checkout. | 2 # execute WebRTC specific tests from a Chromium checkout. |
3 | 3 |
4 vars = { | 4 vars = { |
5 'git_url': | 5 'git_url': |
6 'https://chromium.googlesource.com' | 6 'https://chromium.googlesource.com' |
7 } | 7 } |
8 | 8 |
9 deps = { | 9 deps = { |
10 'apprtc': | 10 'apprtc': |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "src/chrome/test/data/webrtc/resources"], | 79 "src/chrome/test/data/webrtc/resources"], |
80 }, | 80 }, |
81 { | 81 { |
82 # Download tools. If you're not a googler, you need to comment this out | 82 # Download tools. If you're not a googler, you need to comment this out |
83 # and install the required tools yourself in the tools folder. | 83 # and install the required tools yourself in the tools folder. |
84 "pattern": "\\.sha1", | 84 "pattern": "\\.sha1", |
85 "action": ["download_from_google_storage", | 85 "action": ["download_from_google_storage", |
86 "--directory", | 86 "--directory", |
87 "--num_threads=10", | 87 "--num_threads=10", |
88 "--bucket", "chrome-webrtc-resources", | 88 "--bucket", "chrome-webrtc-resources", |
| 89 "--auto_platform", |
| 90 "--recursive", |
89 "src/chrome/test/data/webrtc/resources/tools"], | 91 "src/chrome/test/data/webrtc/resources/tools"], |
90 }, | 92 }, |
91 { | 93 { |
92 # Download firefox for the Firefox AppRTC test. | 94 # Download firefox for the Firefox AppRTC test. |
93 "pattern": ".", | 95 "pattern": ".", |
94 "action" : ["python", | 96 "action" : ["python", |
95 "webrtc.DEPS/download_firefox_nightly.py", | 97 "webrtc.DEPS/download_firefox_nightly.py", |
96 "--clean-old-firefox-archives", | 98 "--clean-old-firefox-archives", |
97 "--target-dir", | 99 "--target-dir", |
98 "firefox-nightly"], | 100 "firefox-nightly"], |
99 }, | 101 }, |
100 ] | 102 ] |
OLD | NEW |