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

Side by Side Diff: DEPS

Issue 486303003: Now fetching tools from webrtc-chrome-resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS/
Patch Set: Created 6 years, 4 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 | no next file » | 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 "chromium_git": "https://chromium.googlesource.com", 5 "chromium_git": "https://chromium.googlesource.com",
6 # Use this googlecode_url variable only if there is an internal mirror for it. 6 # Use this googlecode_url variable only if there is an internal mirror for it.
7 # If you do not know, use the full path while defining your new deps entry. 7 # If you do not know, use the full path while defining your new deps entry.
8 "googlecode_url": "http://%s.googlecode.com/svn", 8 "googlecode_url": "http://%s.googlecode.com/svn",
9 } 9 }
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "--bucket", "chromium-webrtc-resources", 63 "--bucket", "chromium-webrtc-resources",
64 "src/resources"], 64 "src/resources"],
65 }, 65 },
66 { 66 {
67 # Download media files and tools used by the webrtc quality browser tests, 67 # Download media files and tools used by the webrtc quality browser tests,
68 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and 68 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and
69 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. 69 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc.
70 "pattern": "\\.sha1", 70 "pattern": "\\.sha1",
71 "action": ["download_from_google_storage", 71 "action": ["download_from_google_storage",
72 "--directory", 72 "--directory",
73 "--recursive",
74 "--num_threads=10", 73 "--num_threads=10",
75 "--bucket", "chromium-webrtc-resources", 74 "--bucket", "chromium-webrtc-resources",
76 "src/chrome/test/data/webrtc/resources"], 75 "src/chrome/test/data/webrtc/resources"],
77 }, 76 },
78 { 77 {
78 # Download tools. If you're not a googler, you need to comment this out
79 # and install the required tools yourself in the tools folder.
80 "pattern": "\\.sha1",
81 "action": ["download_from_google_storage",
82 "--directory",
83 "--num_threads=10",
84 "--bucket", "chrome-webrtc-resources",
85 "src/chrome/test/data/webrtc/resources/tools"],
86 },
87 {
79 # Download firefox for the Firefox AppRTC test. 88 # Download firefox for the Firefox AppRTC test.
80 "pattern": ".", 89 "pattern": ".",
81 "action" : ["python", 90 "action" : ["python",
82 "webrtc.DEPS/download_firefox_nightly.py", 91 "webrtc.DEPS/download_firefox_nightly.py",
83 "-t", 92 "-t",
84 "firefox-nightly"], 93 "firefox-nightly"],
85 }, 94 },
86 ] 95 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698