Chromium Code Reviews| 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 Android tests from a Chromium checkout. |
| 3 | 3 |
| 4 vars = { | 4 vars = { |
| 5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
| 7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
| 8 } | 8 } |
| 9 | 9 |
| 10 deps = { | |
| 11 "src/third_party/webrtc_apprtc": | |
| 12 "https://webrtc.googlecode.com/svn/trunk/samples/js", | |
|
kjellander_chromium
2013/10/04 12:38:33
https://webrtc.googlecode.com/svn/trunk/samples/js
phoglund1
2013/10/04 12:52:05
I thought so too, but it turns out apprtc needs st
| |
| 13 } | |
| 14 | |
| 10 deps_os = { | 15 deps_os = { |
| 11 "android": { | 16 "android": { |
| 12 "src/data": | 17 "src/data": |
| 13 (Var("googlecode_url") % "webrtc") + "/trunk/data", | 18 (Var("googlecode_url") % "webrtc") + "/trunk/data", |
| 14 "src/third_party/gflags": | 19 "src/third_party/gflags": |
| 15 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", | 20 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", |
| 16 "src/third_party/gflags/src": | 21 "src/third_party/gflags/src": |
| 17 "http://gflags.googlecode.com/svn/trunk/src@84", | 22 "http://gflags.googlecode.com/svn/trunk/src@84", |
| 18 }, | 23 }, |
| 19 } | 24 } |
| 25 | |
| 26 hooks = [ | |
| 27 { | |
| 28 "pattern": "\\.sha1", | |
| 29 "action" : ["download_from_google_storage", | |
| 30 "--bucket=chromium-webrtc-resources", | |
| 31 "--directory", | |
| 32 "webrtc.DEPS"], | |
| 33 }, | |
| 34 { | |
| 35 "pattern": ".", | |
| 36 "action" : ["python", | |
| 37 "webrtc.DEPS/unzip.py", | |
| 38 "webrtc.DEPS/google-appengine.zip"], | |
| 39 }, | |
| 40 ] | |
| OLD | NEW |