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

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