| 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 "chromium_git": "https://chromium.googlesource.com", | 5 'git_url': |
| 6 # Use this googlecode_url variable only if there is an internal mirror for it. | 6 'https://chromium.googlesource.com' |
| 7 # If you do not know, use the full path while defining your new deps entry. | |
| 8 "googlecode_url": "http://%s.googlecode.com/svn", | |
| 9 } | 7 } |
| 10 | 8 |
| 11 deps = { | 9 deps = { |
| 12 "webrtc-samples": | 10 'webrtc-samples': |
| 13 Var("chromium_git") + "/external/webrtc-samples.git", | 11 Var('git_url') + '/external/webrtc-samples.git', |
| 14 "webrtc.DEPS/third_party/manifestdestiny": | 12 'webrtc.DEPS/third_party/manifestdestiny': |
| 15 "/trunk/deps/third_party/manifestdestiny@240893", | 13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374
a81806355ea598ac4', |
| 16 "webrtc.DEPS/third_party/mozdownload": | 14 'webrtc.DEPS/third_party/mozdownload': |
| 17 "/trunk/deps/third_party/mozdownload@240893", | 15 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0
8f2eca536a40a', |
| 18 "webrtc.DEPS/third_party/mozinfo": | 16 'webrtc.DEPS/third_party/mozinfo': |
| 19 "/trunk/deps/third_party/mozinfo@240893", | 17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a
4dcaa120c', |
| 20 "webrtc.DEPS/third_party/mozprocess": | 18 'webrtc.DEPS/third_party/mozprocess': |
| 21 "/trunk/deps/third_party/mozprocess@240893", | 19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe
c07fb91a3b1f', |
| 22 "webrtc.DEPS/third_party/mozprofile": | 20 'webrtc.DEPS/third_party/mozprofile': |
| 23 "/trunk/deps/third_party/mozprofile@240893", | 21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0
1b093a136446', |
| 24 "webrtc.DEPS/third_party/mozrunner": | 22 'webrtc.DEPS/third_party/mozrunner': |
| 25 "/trunk/deps/third_party/mozrunner@240893", | 23 Var('git_url') + '/chromium/deps/mozrunner.git@efb11330692424f7aa5533839b0ae
728bc5f30d1', |
| 26 } | 24 } |
| 27 | 25 |
| 28 deps_os = { | 26 deps_os = { |
| 29 "android": { | 27 'android': { |
| 30 "src/data": | 28 'src/data': |
| 31 (Var("googlecode_url") % "webrtc") + "/trunk/data", | 29 Var('git_url') + '/external/webrtc/trunk/data.git', |
| 32 "src/resources": | 30 'src/resources': |
| 33 (Var("googlecode_url") % "webrtc") + "/trunk/resources", | 31 Var('git_url') + '/external/webrtc/trunk/resources.git', |
| 34 "src/third_party/gflags": | 32 'src/third_party/gflags': |
| 35 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", | 33 Var('git_url') + '/external/webrtc/trunk/third_party/gflags.git', |
| 36 "src/third_party/gflags/src": | 34 'src/third_party/gflags/src': |
| 37 "http://gflags.googlecode.com/svn/trunk/src@84", | 35 Var('git_url') + '/external/gflags/src.git@e7390f9185c75f8d902c05ed7d20bb9
4eb914d0c', |
| 38 }, | 36 }, |
| 39 } | 37 } |
| 40 | 38 |
| 41 hooks = [ | 39 hooks = [ |
| 42 { | 40 { |
| 43 "pattern": ".", | 41 "pattern": ".", |
| 44 "action" : ["python", | 42 "action" : ["python", |
| 45 "webrtc.DEPS/download_appengine_sdk.py", | 43 "webrtc.DEPS/download_appengine_sdk.py", |
| 46 "webrtc.DEPS"], | 44 "webrtc.DEPS"], |
| 47 }, | 45 }, |
| 48 { | 46 { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 }, | 84 }, |
| 87 { | 85 { |
| 88 # Download firefox for the Firefox AppRTC test. | 86 # Download firefox for the Firefox AppRTC test. |
| 89 "pattern": ".", | 87 "pattern": ".", |
| 90 "action" : ["python", | 88 "action" : ["python", |
| 91 "webrtc.DEPS/download_firefox_nightly.py", | 89 "webrtc.DEPS/download_firefox_nightly.py", |
| 92 "-t", | 90 "-t", |
| 93 "firefox-nightly"], | 91 "firefox-nightly"], |
| 94 }, | 92 }, |
| 95 ] | 93 ] |
| OLD | NEW |