| 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 'webrtc-samples': | 10 # TODO(kjellander): Replace the AppRTC location with a GoB mirror as soon as |
| 11 Var('git_url') + '/external/webrtc-samples.git', | 11 # crbug.com/455758 is resolved. |
| 12 'apprtc': |
| 13 'https://github.com/webrtc/apprtc.git', |
| 12 'webrtc.DEPS/third_party/manifestdestiny': | 14 'webrtc.DEPS/third_party/manifestdestiny': |
| 13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374
a81806355ea598ac4', | 15 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374
a81806355ea598ac4', |
| 14 'webrtc.DEPS/third_party/mozdownload': | 16 'webrtc.DEPS/third_party/mozdownload': |
| 15 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0
8f2eca536a40a', | 17 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0
8f2eca536a40a', |
| 16 'webrtc.DEPS/third_party/mozinfo': | 18 'webrtc.DEPS/third_party/mozinfo': |
| 17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a
4dcaa120c', | 19 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a
4dcaa120c', |
| 18 'webrtc.DEPS/third_party/mozprocess': | 20 'webrtc.DEPS/third_party/mozprocess': |
| 19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe
c07fb91a3b1f', | 21 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe
c07fb91a3b1f', |
| 20 'webrtc.DEPS/third_party/mozprofile': | 22 'webrtc.DEPS/third_party/mozprofile': |
| 21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0
1b093a136446', | 23 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0
1b093a136446', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "action" : ["python", | 57 "action" : ["python", |
| 56 "webrtc.DEPS/build_mercurial_local.py"], | 58 "webrtc.DEPS/build_mercurial_local.py"], |
| 57 }, | 59 }, |
| 58 { | 60 { |
| 59 # Build AppRTC Collider using the golang toolchain. | 61 # Build AppRTC Collider using the golang toolchain. |
| 60 "pattern": ".", | 62 "pattern": ".", |
| 61 "action" : ["python", | 63 "action" : ["python", |
| 62 "webrtc.DEPS/build_apprtc_collider.py"], | 64 "webrtc.DEPS/build_apprtc_collider.py"], |
| 63 }, | 65 }, |
| 64 { | 66 { |
| 65 # Build AppRTC closure Javascript. | 67 # Build the AppRTC App Engine Application. |
| 66 "pattern": ".", | 68 "pattern": ".", |
| 67 "action" : ["python", | 69 "action" : ["python", |
| 68 "webrtc.DEPS/build_apprtc_closure.py"], | 70 "webrtc.DEPS/build_apprtc_appengine_app.py"], |
| 69 }, | 71 }, |
| 70 { | 72 { |
| 71 # Download media files and tools used by the webrtc quality browser tests, | 73 # Download media files and tools used by the webrtc quality browser tests, |
| 72 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and | 74 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and |
| 73 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. | 75 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. |
| 74 "pattern": "\\.sha1", | 76 "pattern": "\\.sha1", |
| 75 "action": ["download_from_google_storage", | 77 "action": ["download_from_google_storage", |
| 76 "--directory", | 78 "--directory", |
| 77 "--num_threads=10", | 79 "--num_threads=10", |
| 78 "--bucket", "chromium-webrtc-resources", | 80 "--bucket", "chromium-webrtc-resources", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 |