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

Side by Side Diff: DEPS

Issue 846593003: Remove no longer needed Android dependencies (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/webrtc/webrtc.DEPS
Patch Set: Created 5 years, 11 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 specific tests from a Chromium checkout. 2 # execute WebRTC specific tests from a Chromium checkout.
3 3
4 vars = { 4 vars = {
5 'git_url': 5 'git_url':
6 'https://chromium.googlesource.com' 6 'https://chromium.googlesource.com'
7 } 7 }
8 8
9 deps = { 9 deps = {
10 'webrtc-samples': 10 'webrtc-samples':
11 Var('git_url') + '/external/webrtc-samples.git', 11 Var('git_url') + '/external/webrtc-samples.git',
12 'webrtc.DEPS/third_party/manifestdestiny': 12 'webrtc.DEPS/third_party/manifestdestiny':
13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374 a81806355ea598ac4', 13 Var('git_url') + '/chromium/deps/manifestdestiny.git@46ae53ac463e23bfefec374 a81806355ea598ac4',
14 'webrtc.DEPS/third_party/mozdownload': 14 'webrtc.DEPS/third_party/mozdownload':
15 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0 8f2eca536a40a', 15 Var('git_url') + '/chromium/deps/mozdownload.git@dcb2344c8f16caae7762c4557d0 8f2eca536a40a',
16 'webrtc.DEPS/third_party/mozinfo': 16 'webrtc.DEPS/third_party/mozinfo':
17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a 4dcaa120c', 17 Var('git_url') + '/chromium/deps/mozinfo.git@f4cc257e21c48bc33dc1d12123d934a 4dcaa120c',
18 'webrtc.DEPS/third_party/mozprocess': 18 'webrtc.DEPS/third_party/mozprocess':
19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe c07fb91a3b1f', 19 Var('git_url') + '/chromium/deps/mozprocess.git@11d11bebc8517dcedec71f377cbe c07fb91a3b1f',
20 'webrtc.DEPS/third_party/mozprofile': 20 'webrtc.DEPS/third_party/mozprofile':
21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0 1b093a136446', 21 Var('git_url') + '/chromium/deps/mozprofile.git@313295a0d9e1687dafa58e12f1f0 1b093a136446',
22 'webrtc.DEPS/third_party/mozrunner': 22 'webrtc.DEPS/third_party/mozrunner':
23 Var('git_url') + '/chromium/deps/mozrunner.git@efb11330692424f7aa5533839b0ae 728bc5f30d1', 23 Var('git_url') + '/chromium/deps/mozrunner.git@efb11330692424f7aa5533839b0ae 728bc5f30d1',
24 } 24 }
25 25
26 deps_os = {
27 'android': {
28 'src/data':
29 Var('git_url') + '/external/webrtc/trunk/data.git',
30 'src/resources':
31 Var('git_url') + '/external/webrtc/trunk/resources.git',
32 'src/third_party/gflags':
33 Var('git_url') + '/external/webrtc/trunk/third_party/gflags.git',
34 'src/third_party/gflags/src':
35 Var('git_url') + '/external/gflags/src.git@e7390f9185c75f8d902c05ed7d20bb9 4eb914d0c',
36 },
37 }
38
39 hooks = [ 26 hooks = [
40 { 27 {
41 "pattern": ".", 28 "pattern": ".",
42 "action" : ["python", 29 "action" : ["python",
43 "webrtc.DEPS/download_appengine_and_mercurial.py", 30 "webrtc.DEPS/download_appengine_and_mercurial.py",
44 "webrtc.DEPS"], 31 "webrtc.DEPS"],
45 }, 32 },
46 { 33 {
47 "pattern": ".", 34 "pattern": ".",
48 "action" : ["python", 35 "action" : ["python",
(...skipping 13 matching lines...) Expand all
62 "action" : ["python", 49 "action" : ["python",
63 "webrtc.DEPS/build_mercurial_local.py"], 50 "webrtc.DEPS/build_mercurial_local.py"],
64 }, 51 },
65 { 52 {
66 # Build AppRTC Collider using the golang toolchain. 53 # Build AppRTC Collider using the golang toolchain.
67 "pattern": ".", 54 "pattern": ".",
68 "action" : ["python", 55 "action" : ["python",
69 "webrtc.DEPS/build_apprtc_collider.py"], 56 "webrtc.DEPS/build_apprtc_collider.py"],
70 }, 57 },
71 { 58 {
72 # Download test resources, i.e. video and audio files from Google Storage.
73 # These resources are used by the Android bots.
74 "pattern": "\\.sha1",
75 "action": ["download_from_google_storage",
76 "--directory",
77 "--recursive",
78 "--num_threads=10",
79 "--bucket", "chromium-webrtc-resources",
80 "src/resources"],
81 },
82 {
83 # Download media files and tools used by the webrtc quality browser tests, 59 # Download media files and tools used by the webrtc quality browser tests,
84 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and 60 # chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc and
85 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc. 61 # chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc.
86 "pattern": "\\.sha1", 62 "pattern": "\\.sha1",
87 "action": ["download_from_google_storage", 63 "action": ["download_from_google_storage",
88 "--directory", 64 "--directory",
89 "--num_threads=10", 65 "--num_threads=10",
90 "--bucket", "chromium-webrtc-resources", 66 "--bucket", "chromium-webrtc-resources",
91 "src/chrome/test/data/webrtc/resources"], 67 "src/chrome/test/data/webrtc/resources"],
92 }, 68 },
93 { 69 {
94 # Download tools. If you're not a googler, you need to comment this out 70 # Download tools. If you're not a googler, you need to comment this out
95 # and install the required tools yourself in the tools folder. 71 # and install the required tools yourself in the tools folder.
96 "pattern": "\\.sha1", 72 "pattern": "\\.sha1",
97 "action": ["download_from_google_storage", 73 "action": ["download_from_google_storage",
98 "--directory", 74 "--directory",
99 "--num_threads=10", 75 "--num_threads=10",
100 "--bucket", "chrome-webrtc-resources", 76 "--bucket", "chrome-webrtc-resources",
101 "src/chrome/test/data/webrtc/resources/tools"], 77 "src/chrome/test/data/webrtc/resources/tools"],
102 }, 78 },
103 { 79 {
104 # Download firefox for the Firefox AppRTC test. 80 # Download firefox for the Firefox AppRTC test.
105 "pattern": ".", 81 "pattern": ".",
106 "action" : ["python", 82 "action" : ["python",
107 "webrtc.DEPS/download_firefox_nightly.py", 83 "webrtc.DEPS/download_firefox_nightly.py",
108 "-t", 84 "-t",
109 "firefox-nightly"], 85 "firefox-nightly"],
110 }, 86 },
111 ] 87 ]
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