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

Side by Side Diff: DEPS

Issue 1414343008: DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 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
« no previous file with comments | « .gitignore ('k') | PRESUBMIT.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 # This file contains dependencies for WebRTC that are not shared with Chromium. 1 # This file contains dependencies for WebRTC.
2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a
3 # directory from the Chromium checkout, you should add it to setup_links.py
4 # instead.
5 2
6 vars = { 3 vars = {
7 'chromium_git': 'https://chromium.googlesource.com', 4 'chromium_git': 'https://chromium.googlesource.com',
8 'chromium_revision': 'e6b29f780581dedef421548119586efeb5825d2c', 5 'chromium_revision': 'e6b29f780581dedef421548119586efeb5825d2c',
6 'boringssl_git': 'https://boringssl.googlesource.com',
7 # Three lines of non-changing comments so that
8 # the commit queue can handle CLs rolling swarming_client
9 # and whatever else without interference from each other.
10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404',
11 # Three lines of non-changing comments so that
12 # the commit queue can handle CLs rolling openmax_dl
13 # and whatever else without interference from each other.
14 'openmax_dl_revision': '7acede9c039ea5d14cf326f44aad1245b9e674a7',
15 # Three lines of non-changing comments so that
16 # the commit queue can handle CLs rolling BoringSSL
17 # and whatever else without interference from each other.
18 'boringssl_revision': '33b1d4f575543b42b9c3406b7f8259daf11945dc',
19 # Three lines of non-changing comments so that
20 # the commit queue can handle CLs rolling nss
21 # and whatever else without interference from each other.
22 'nss_revision': 'db89506ac363956b4b253db881219eb5d6246781',
23 # Three lines of non-changing comments so that
24 # the commit queue can handle CLs rolling lss
25 # and whatever else without interference from each other.
26 'lss_revision': '3f6478ac95edf86cd3da300c2c0d34a438f5dbeb',
27 # Three lines of non-changing comments so that
28 # the commit queue can handle CLs rolling catapult
29 # and whatever else without interference from each other.
30 'catapult_revision': '70f42a7c55ca69cdeb9aa6ec7e40ff3f155040b9',
31 # Three lines of non-changing comments so that
32 # the commit queue can handle CLs rolling libFuzzer
33 # and whatever else without interference from each other.
34 'libfuzzer_revision': '2d19afdbadb1f20d4254f8a5447fceb30f616157',
9 } 35 }
10 36
11 deps = { 37 deps = {
38 # TODO(kjellander): Move this to be Android-only once the libevent dependency
39 # in base/third_party/libevent is solved.
40 'src/base':
41 Var('chromium_git') + '/chromium/src/base' + '@' + '426683655fbb37d58a331d97 121fe5d754d3ea02',
42 'src/build':
43 Var('chromium_git') + '/chromium/src/build' + '@' + '53a8a4bbfa7ecf84bba943a a0fdaceb2bd542c85',
44 'src/buildtools':
45 Var('chromium_git') + '/chromium/buildtools.git' + '@' + '0ef801087682b271e9 ace93cfa93e9d3dea98079',
46 'src/testing':
47 Var('chromium_git') + '/chromium/src/testing' + '@' + '97282a50ebdaf10a28444 81566c574bcb5776272',
48 'src/testing/gtest':
49 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + ' 6f8a66431cb592dad629028a50b3dd418a408c87',
50 'src/testing/gmock':
51 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e1 02c9c332ce19a33faf75be', # from svn revision 566
52 'src/third_party':
53 Var('chromium_git') + '/chromium/src/third_party' + '@' + '905ae0c4193973585 64b01df29260c136a0c4aff',
54 'src/third_party/boringssl/src':
55 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
56 'src/third_party/catapult':
57 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' + '@' + Var('catapult_revision'),
58 'src/third_party/colorama/src':
59 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2 789ecbd7e8db2e18e6b8',
60 'src/third_party/ffmpeg':
61 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f309edd782 8e3ea500c2891187d15926690ddd27',
62 'src/third_party/jsoncpp/source':
63 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248
64
65 # Used for building libFuzzers (only supports Linux).
66 'src/third_party/libFuzzer/src':
67 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' + Var('libfuzzer_revision'),
68
69 'src/third_party/libjpeg_turbo':
70 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7260e4d8b8 e1e40b17f03fafdf1cd83296900f76',
71 'src/third_party/libsrtp':
72 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '0e0936f3013fe5884 eac82f95e370c8d460a179f',
73 'src/third_party/libvpx/source/libvpx':
74 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'd1eca240fb04fae3039ac2851 0ba0992eb03248d',
75 'src/third_party/libyuv':
76 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'b18fd21d3c27fce69b5c1ed4 4b89131dedc87284',
77 'src/third_party/nss':
78 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'),
79 'src/third_party/openh264/src':
80 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '0fd88df 93c5dcaf858c57eb7892bd27763f0f0ac',
81 'src/third_party/openmax_dl':
82 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
83 'src/third_party/usrsctp/usrsctplib':
84 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7f9228 152ab3d70e6848cc9c67389a0d4218740e',
85 'src/third_party/yasm/source/patched-yasm':
86 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c 6c7c6a1387217352ce02b31754deb54d2a',
87 'src/tools':
88 Var('chromium_git') + '/chromium/src/tools' + '@' + '4b7f075b7070bd3e422f1da 2c526934bc14a7834',
89 'src/tools/gyp':
90 Var('chromium_git') + '/external/gyp.git' + '@' + 'e7079f0e0e14108ab0dba5872 8ff219637458563',
91 'src/tools/swarming_client':
92 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin g_revision'),
93
94 # WebRTC-only dependencies (not present in Chromium).
12 'src/third_party/gflags': 95 'src/third_party/gflags':
13 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89 2576179b45861b53e04a112996a738309cf364', 96 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89 2576179b45861b53e04a112996a738309cf364',
14 'src/third_party/gflags/src': 97 'src/third_party/gflags/src':
15 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0 65c83beff83d50ae025a55a4bf94dfca', 98 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0 65c83beff83d50ae025a55a4bf94dfca',
16 'src/third_party/gtest-parallel': 99 'src/third_party/gtest-parallel':
17 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + ' @' + '8768563f5c580f8fc416a13c35c8f23b8a602821', 100 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + ' @' + '8768563f5c580f8fc416a13c35c8f23b8a602821',
18 } 101 }
19 102
20 deps_os = { 103 deps_os = {
104 'android': {
105 'src/third_party/android_tools':
106 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814 f04dd6c7d7176974cc',
107 'src/third_party/ced/src':
108 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'e57cdc44bd541d10669312a6fdc59fc4bf52d2b9',
109 'src/third_party/icu':
110 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9cd2828740572ba6f6 94b9365236a8356fd06147',
111 'src/third_party/jsr-305/src':
112 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a f6d5df2d3210e3bfc0919',
113 'src/third_party/junit/src':
114 Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263c f4d08253a1556e75481',
115 'src/third_party/lss':
116 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'),
117 'src/third_party/mockito/src':
118 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a d4cf5ea53c69a8a8053780b04b850',
119 'src/third_party/requests/src':
120 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + ' @' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
121 'src/third_party/robolectric/robolectric':
122 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17 a94f0382cc8ffaf69132fd09b',
123 'src/third_party/ub-uiautomator/lib':
124 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + ' 00270549ce3161ae72ceb24712618ea28b4f9434',
125 },
126 'unix': {
127 'src/third_party/lss':
128 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'),
129 },
21 'win': { 130 'win': {
131 # Dependencies used by libjpeg-turbo
132 'src/third_party/yasm/binaries':
133 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4 b0aa06da24ef8b123058bb61ee468881',
134
135 # WebRTC-only dependency (not present in Chromium).
22 'src/third_party/winsdk_samples': 136 'src/third_party/winsdk_samples':
23 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v71 ' + '@' + '6e4f93cc0c2f597547449cbaa80a6af629215a63', 137 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7 1' + '@' + '6e4f93cc0c2f597547449cbaa80a6af629215a63',
24 }, 138 },
25 } 139 }
26 140
27 hooks = [ 141 hooks = [
28 { 142 {
29 # Check for legacy named top-level dir (named 'trunk'). 143 # Check for legacy named top-level dir (named 'trunk').
30 'name': 'check_root_dir_name', 144 'name': 'check_root_dir_name',
31 'pattern': '.', 145 'pattern': '.',
32 'action': ['python','-c', 146 'action': ['python','-c',
33 ('import os,sys;' 147 ('import os,sys;'
34 'script = os.path.join("trunk","check_root_dir.py");' 148 'script = os.path.join("trunk","check_root_dir.py");'
35 '_ = os.system("%s %s" % (sys.executable,script)) ' 149 '_ = os.system("%s %s" % (sys.executable,script)) '
36 'if os.path.exists(script) else 0')], 150 'if os.path.exists(script) else 0')],
37 }, 151 },
38 { 152 {
39 # Clone chromium and its deps.
40 'name': 'sync chromium',
41 'pattern': '.',
42 'action': ['python', '-u', 'src/sync_chromium.py',
43 '--target-revision', Var('chromium_revision')],
44 },
45 {
46 # Create links to shared dependencies in Chromium.
47 'name': 'setup_links',
48 'pattern': '.',
49 'action': ['python', 'src/setup_links.py'],
50 },
51 {
52 # This clobbers when necessary (based on get_landmines.py). It should be 153 # This clobbers when necessary (based on get_landmines.py). It should be
53 # an early hook but it will need to be run after syncing Chromium and 154 # an early hook but it will need to be run after syncing Chromium and
54 # setting up the links, so the script actually exists. 155 # setting up the links, so the script actually exists.
55 'name': 'landmines', 156 'name': 'landmines',
56 'pattern': '.', 157 'pattern': '.',
57 'action': [ 158 'action': [
58 'python', 159 'python',
59 'src/build/landmines.py', 160 'src/build/landmines.py',
60 '--landmine-scripts', 161 '--landmine-scripts',
61 'src/webrtc/build/get_landmines.py', 162 'src/webrtc/build/get_landmines.py',
62 '--src-dir', 163 '--src-dir',
63 'src', 164 'src',
64 ], 165 ],
65 }, 166 },
66 {
67 # Download Google Play Services SDK (without license prompt).
68 'name': 'google_play_services_download',
69 'pattern': '.',
70 'action': ['python', 'src/webrtc/build/google_play_services_download.py'],
71 },
72 # Android dependencies. Many are downloaded using Google Storage these days. 167 # Android dependencies. Many are downloaded using Google Storage these days.
73 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all 168 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all
74 # such dependencies we share with Chromium. 169 # such dependencies we share with Chromium.
75 { 170 {
171 # This downloads SDK extras and puts them in the
172 # third_party/android_tools/sdk/extras directory.
173 'name': 'sdkextras',
174 'pattern': '.',
175 # When adding a new sdk extras package to download, add the package
176 # directory and zip file to .gitignore in third_party/android_tools.
177 'action': ['python',
178 'src/build/android/play_services/update.py',
179 'download'
180 ],
181 },
182 {
76 'name': 'intellij', 183 'name': 'intellij',
77 'pattern': '.', 184 'pattern': '.',
78 'action': ['python', 185 'action': ['python',
79 'src/build/android/update_deps/update_third_party_deps.py', 186 'src/build/android/update_deps/update_third_party_deps.py',
80 'download', 187 'download',
81 '-b', 'chromium-intellij', 188 '-b', 'chromium-intellij',
82 '-l', 'third_party/intellij' 189 '-l', 'third_party/intellij'
83 ], 190 ],
84 }, 191 },
85 { 192 {
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 }, 513 },
407 ] 514 ]
408 515
409 recursedeps = [ 516 recursedeps = [
410 # buildtools provides clang_format, libc++, and libc++abi. 517 # buildtools provides clang_format, libc++, and libc++abi.
411 'src/buildtools', 518 'src/buildtools',
412 # android_tools manages the NDK. 519 # android_tools manages the NDK.
413 'src/third_party/android_tools', 520 'src/third_party/android_tools',
414 ] 521 ]
415 522
OLDNEW
« no previous file with comments | « .gitignore ('k') | PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698