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

Side by Side Diff: DEPS

Issue 114293002: Adding support for launching firefox from webrtc.DEPS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS/
Patch Set: Created 7 years 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 | download_firefox_nightly.py » ('j') | no next file with comments »
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 { 42 {
43 # Download test resources, i.e. video and audio files from Google Storage. 43 # Download test resources, i.e. video and audio files from Google Storage.
44 "pattern": "\\.sha1", 44 "pattern": "\\.sha1",
45 "action": ["download_from_google_storage", 45 "action": ["download_from_google_storage",
46 "--directory", 46 "--directory",
47 "--recursive", 47 "--recursive",
48 "--num_threads=10", 48 "--num_threads=10",
49 "--bucket", "chromium-webrtc-resources", 49 "--bucket", "chromium-webrtc-resources",
50 "src/resources"], 50 "src/resources"],
51 }, 51 },
52 {
53 # Download firefox for the Firefox AppRTC test.
54 "pattern": ".",
55 "action" : ["python",
56 "webrtc.DEPS/download_firefox_nightly.py",
57 "-t",
58 "firefox-nightly"],
59 },
52 ] 60 ]
OLDNEW
« no previous file with comments | « no previous file | download_firefox_nightly.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698