Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: DEPS

Issue 32063003: Will now copy apprtc to out/ in order to resolve symlinks on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | copy_apprtc.py » ('j') | copy_apprtc.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 = {
(...skipping 12 matching lines...) Expand all
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 {
34 # "Build" AppRTC, i.e. move it to the out/ dir where the browser test
35 # can find it. This is only done on runhooks.
36 "pattern": ".",
37 "action" : ["python",
38 "webrtc.DEPS/copy_apprtc.py"],
39 }
33 ] 40 ]
OLDNEW
« no previous file with comments | « no previous file | copy_apprtc.py » ('j') | copy_apprtc.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698