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': |
11 Var('git_url') + '/external/webrtc/apprtc@3168981efed7629fabee731a5ee74d3716
b50652', | 11 Var('git_url') + '/external/webrtc/apprtc@3168981efed7629fabee731a5ee74d3716
b50652', |
12 'webrtc.DEPS/third_party/manifestdestiny': | 12 'webrtc.DEPS/third_party/manifestdestiny': |
13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374
a81806355ea598ac4', | 13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374
a81806355ea598ac4', |
14 'webrtc.DEPS/third_party/mozdownload': | 14 'webrtc.DEPS/third_party/mozdownload': |
15 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0
8f2eca536a40a', | 15 Var('git_url') + '/chromium/deps/mozdownload.git@5d3e0bf7851b093ff9a89d45f13
185691c496be', |
16 'webrtc.DEPS/third_party/mozinfo': | 16 'webrtc.DEPS/third_party/mozinfo': |
17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a
4dcaa120c', | 17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a
4dcaa120c', |
18 'webrtc.DEPS/third_party/mozprocess': | 18 'webrtc.DEPS/third_party/mozprocess': |
19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe
c07fb91a3b1f', | 19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe
c07fb91a3b1f', |
20 'webrtc.DEPS/third_party/mozprofile': | 20 'webrtc.DEPS/third_party/mozprofile': |
21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0
1b093a136446', | 21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0
1b093a136446', |
22 'webrtc.DEPS/third_party/mozrunner': | 22 'webrtc.DEPS/third_party/mozrunner': |
23 Var('git_url') + '/chromium/deps/mozrunner.git@efb11330692424f7aa5533839b0ae
728bc5f30d1', | 23 Var('git_url') + '/chromium/deps/mozrunner.git@efb11330692424f7aa5533839b0ae
728bc5f30d1', |
| 24 'webrtc.DEPS/third_party/requests/': |
| 25 Var('git_url') + '/external/github.com/kennethreitz/requests.git@2128321b85d
fd969498e5d1636dcc3c4a27917ba' |
24 } | 26 } |
25 | 27 |
26 hooks = [ | 28 hooks = [ |
27 { | 29 { |
28 "pattern": ".", | 30 "pattern": ".", |
29 "action" : ["python", | 31 "action" : ["python", |
30 "webrtc.DEPS/download_appengine_and_mercurial.py", | 32 "webrtc.DEPS/download_appengine_and_mercurial.py", |
31 "webrtc.DEPS"], | 33 "webrtc.DEPS"], |
32 }, | 34 }, |
33 { | 35 { |
(...skipping 49 matching lines...) Loading... |
83 # and install the required tools yourself in the tools folder. | 85 # and install the required tools yourself in the tools folder. |
84 "pattern": "\\.sha1", | 86 "pattern": "\\.sha1", |
85 "action": ["download_from_google_storage", | 87 "action": ["download_from_google_storage", |
86 "--directory", | 88 "--directory", |
87 "--num_threads=10", | 89 "--num_threads=10", |
88 "--bucket", "chrome-webrtc-resources", | 90 "--bucket", "chrome-webrtc-resources", |
89 "--auto_platform", | 91 "--auto_platform", |
90 "--recursive", | 92 "--recursive", |
91 "src/chrome/test/data/webrtc/resources/tools"], | 93 "src/chrome/test/data/webrtc/resources/tools"], |
92 }, | 94 }, |
93 #{ | 95 { |
94 # Download firefox for the Firefox AppRTC test. | 96 # Download firefox for the Firefox AppRTC test. |
95 # TODO(phoglund): Disabled due to http://crbug.com/545862. | 97 # TODO(phoglund): Disabled due to http://crbug.com/545862. |
96 #"pattern": ".", | 98 "pattern": ".", |
97 #"action" : ["python", | 99 "action" : ["python", |
98 # "webrtc.DEPS/download_firefox_nightly.py", | 100 "webrtc.DEPS/download_firefox_nightly.py", |
99 # "--clean-old-firefox-archives", | 101 "--clean-old-firefox-archives", |
100 # "--target-dir", | 102 "--target-dir", |
101 # "firefox-nightly"], | 103 "firefox-nightly"], |
102 #}, | 104 }, |
103 ] | 105 ] |
OLD | NEW |