| 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 = { | 10 deps = { |
| 11 "src/third_party/webrtc_apprtc": | 11 "src/third_party/webrtc_apprtc": |
| 12 "https://webrtc.googlecode.com/svn/trunk/samples/js", | 12 (Var("googlecode_url") % "webrtc") + "/trunk/samples/js", |
| 13 } | 13 } |
| 14 | 14 |
| 15 deps_os = { | 15 deps_os = { |
| 16 "android": { | 16 "android": { |
| 17 "src/data": | 17 "src/data": |
| 18 (Var("googlecode_url") % "webrtc") + "/trunk/data", | 18 (Var("googlecode_url") % "webrtc") + "/trunk/data", |
| 19 "src/third_party/gflags": | 19 "src/third_party/gflags": |
| 20 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", | 20 (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags", |
| 21 "src/third_party/gflags/src": | 21 "src/third_party/gflags/src": |
| 22 "http://gflags.googlecode.com/svn/trunk/src@84", | 22 "http://gflags.googlecode.com/svn/trunk/src@84", |
| 23 }, | 23 }, |
| 24 } | 24 } |
| 25 | 25 |
| 26 hooks = [ | 26 hooks = [ |
| 27 { | 27 { |
| 28 "pattern": ".", | 28 "pattern": ".", |
| 29 "action" : ["python", | 29 "action" : ["python", |
| 30 "webrtc.DEPS/download_appengine_sdk.py", | 30 "webrtc.DEPS/download_appengine_sdk.py", |
| 31 "webrtc.DEPS"], | 31 "webrtc.DEPS"], |
| 32 }, | 32 }, |
| 33 ] | 33 ] |
| OLD | NEW |