blob: 70ca67d2c22234c367301ce7b71371c973af820b [file] [log] [blame]
Primiano Tucciae2879e2017-09-27 11:02:09 +09001#!/usr/bin/env python
2# Copyright (C) 2017 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16import argparse
17import hashlib
18import logging
19import os
20import shutil
Primiano Tucci0825bc82017-09-28 18:50:23 +010021import subprocess
Primiano Tucciae2879e2017-09-27 11:02:09 +090022import sys
Sami Kyostilac7ddac72019-06-05 21:43:40 +010023import tempfile
Primiano Tucciae2879e2017-09-27 11:02:09 +090024import zipfile
25
Primiano Tuccid7750452017-09-29 14:38:51 +010026from collections import namedtuple
Matthew Clarkson40e48192019-10-28 12:35:01 +000027from platform import system
Primiano Tuccid7750452017-09-29 14:38:51 +010028
Matthew Clarkson9a5dfa52019-10-03 09:54:04 +010029from compat import urlretrieve
30
Primiano Tuccib60d4b02017-11-10 11:03:00 +000031# The format for the deps below is the following:
32# (target_folder, source_url, sha1, target_platform)
33# |source_url| can be either a git repo or a http url.
34# If a git repo, |sha1| is the committish that will be checked out.
35# If a http url, |sha1| is the shasum of the original file.
36# If the url is a .zip or .tgz file it will be automatically deflated under
37# |target_folder|, taking care of stripping the root folder if it's a single
38# root (to avoid ending up with buildtools/protobuf/protobuf-1.2.3/... and have
39# instead just buildtools/protobuf).
Matthew Clarkson40e48192019-10-28 12:35:01 +000040# |target_platform| is either 'darwin', 'linux' or 'all' and applies the dep
41# only on the given platform
Primiano Tuccib60d4b02017-11-10 11:03:00 +000042
Primiano Tuccid7750452017-09-29 14:38:51 +010043# Dependencies required to build code on the host or when targeting desktop OS.
44BUILD_DEPS_HOST = [
Matthew Clarkson63028d62019-10-10 15:48:23 +010045 # GN
46 ('buildtools/mac/gn',
Primiano Tucci2925e9d2020-01-27 10:15:58 +000047 'https://storage.googleapis.com/perfetto/gn-mac-1695-83dad00a',
48 '4c0d45772aea4146699772165e8112fa76ceb295', 'darwin'),
Matthew Clarkson63028d62019-10-10 15:48:23 +010049 ('buildtools/linux64/gn',
Primiano Tucci2925e9d2020-01-27 10:15:58 +000050 'https://storage.googleapis.com/perfetto/gn-linux64-1695-83dad00a',
51 'fcabfc379bccaa65b4e2fc791594ba124dafc7d0', 'linux'),
Primiano Tucciae2879e2017-09-27 11:02:09 +090052
Matthew Clarkson63028d62019-10-10 15:48:23 +010053 # clang-format
54 ('buildtools/mac/clang-format',
55 'https://storage.googleapis.com/chromium-clang-format/025ca7c75f37ef4a40f3a67d81ddd11d7d0cdb9b',
56 '025ca7c75f37ef4a40f3a67d81ddd11d7d0cdb9b', 'darwin'),
57 ('buildtools/linux64/clang-format',
58 'https://storage.googleapis.com/chromium-clang-format/942fc8b1789144b8071d3fc03ff0fcbe1cf81ac8',
Matthew Clarkson40e48192019-10-28 12:35:01 +000059 '942fc8b1789144b8071d3fc03ff0fcbe1cf81ac8', 'linux'),
Matthew Clarkson63028d62019-10-10 15:48:23 +010060 # Keep the SHA1 in sync with |clang_format_rev| in chromium //buildtools/DEPS.
61 ('buildtools/clang_format/script',
62 'https://chromium.googlesource.com/chromium/llvm-project/cfe/tools/clang-format.git',
63 '96636aa0e9f047f17447f2d45a094d0b59ed7917', 'all'),
Primiano Tucci104bd6d2017-10-12 00:10:24 +020064
Matthew Clarkson63028d62019-10-10 15:48:23 +010065 # Ninja
66 ('buildtools/mac/ninja',
67 'https://storage.googleapis.com/perfetto/ninja-mac-c15b0698da038b2bd2e8970c14c75fadc06b1add',
68 'c15b0698da038b2bd2e8970c14c75fadc06b1add', 'darwin'),
69 ('buildtools/linux64/ninja',
70 'https://storage.googleapis.com/perfetto/ninja-linux64-c866952bda50c29a669222477309287119bbb7e8',
Matthew Clarkson40e48192019-10-28 12:35:01 +000071 'c866952bda50c29a669222477309287119bbb7e8', 'linux'),
Primiano Tucciae2879e2017-09-27 11:02:09 +090072
Matthew Clarkson63028d62019-10-10 15:48:23 +010073 # Keep in sync with Android's //external/googletest/README.version.
74 ('buildtools/googletest.zip',
Ryan Savitskib08b9cb2019-11-01 17:36:19 +000075 'https://github.com/google/googletest/archive/3f05f651ae3621db58468153e32016bc1397800b.zip',
76 '86384688f7c533ad325a505efc917e0cdf39a0ce', 'all'),
Primiano Tuccid7750452017-09-29 14:38:51 +010077
Primiano Tuccif550b252019-12-03 11:06:02 +000078 # Keep in sync with Chromium's //third_party/protobuf.
Matthew Clarkson63028d62019-10-10 15:48:23 +010079 ('buildtools/protobuf.zip',
Primiano Tuccif550b252019-12-03 11:06:02 +000080 'https://github.com/protocolbuffers/protobuf/releases/download/v3.9.0/protobuf-cpp-3.9.0.zip',
81 'c975536dffe9d9a3d362928aef4fb9f199012b98', 'all'),
Primiano Tuccid7750452017-09-29 14:38:51 +010082
Matthew Clarkson63028d62019-10-10 15:48:23 +010083 # libc++, libc++abi and libunwind for Linux where we need to rebuild the C++
84 # lib from sources. Keep the SHA1s in sync with Chrome's src/buildtools/DEPS.
85 ('buildtools/libcxx',
86 'https://chromium.googlesource.com/chromium/llvm-project/libcxx.git',
Primiano Tucci5e2dbac2020-01-27 10:35:27 +000087 '78d6a7767ed57b50122a161b91f59f19c9bd0d19', 'all'),
Matthew Clarkson63028d62019-10-10 15:48:23 +010088 ('buildtools/libcxxabi',
89 'https://chromium.googlesource.com/chromium/llvm-project/libcxxabi.git',
90 '0d529660e32d77d9111912d73f2c74fc5fa2a858', 'all'),
91 ('buildtools/libunwind',
92 'https://chromium.googlesource.com/external/llvm.org/libunwind.git',
93 '69d9b84cca8354117b9fe9705a4430d789ee599b', 'all'),
Hector Dearman88a10112017-10-12 11:07:10 +010094
Matthew Clarkson63028d62019-10-10 15:48:23 +010095 # Keep the revision in sync with Chrome's PACKAGE_VERSION in
96 # tools/clang/scripts/update.py.
97 ('buildtools/clang.tgz',
Primiano Tucci5e2dbac2020-01-27 10:35:27 +000098 'https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-n332890-c2443155-2.tgz',
Ryan Savitskib1cec092020-01-27 21:03:30 +000099 'd6501ffdb5dbb0ffe8a4b873cc092a9929e661ec', 'linux'),
Primiano Tuccia65497e2018-09-26 19:53:58 +0100100
Matthew Clarkson63028d62019-10-10 15:48:23 +0100101 # Keep in sync with chromium DEPS.
102 ('buildtools/libfuzzer',
103 'https://chromium.googlesource.com/chromium/llvm-project/compiler-rt/lib/fuzzer.git',
Primiano Tucci5e2dbac2020-01-27 10:35:27 +0000104 'debe7d2d1982e540fbd6bd78604bf001753f9e74', 'linux'),
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000105
Matthew Clarkson63028d62019-10-10 15:48:23 +0100106 # Benchmarking tool.
107 ('buildtools/benchmark.zip',
108 'https://github.com/google/benchmark/archive/v1.3.0.zip',
109 'f387e0df37d54bfd5be239e8d0d3ea2e2c3e34f4', 'all'),
Primiano Tucci38faa6f2018-04-01 20:12:08 +0200110
Matthew Clarkson63028d62019-10-10 15:48:23 +0100111 # Libbacktrace, for stacktraces in Linux/Android debug builds.
112 ('buildtools/libbacktrace.zip',
113 'https://github.com/ianlancetaylor/libbacktrace/archive/177940370e4a6b2509e92a0aaa9749184e64af43.zip',
114 'b723fe9d671d1ab54df1297f6afbf2893a41c3ea', 'all'),
Lalit Maganti6fe26e62018-05-23 12:14:38 +0100115
Matthew Clarkson63028d62019-10-10 15:48:23 +0100116 # Sqlite for the trace processing library.
117 # This is the amalgamated source whose compiled output is meant to be faster.
118 # We still pull the full source for the extensions (not amalgamated).
119 ('buildtools/sqlite.zip',
120 'https://storage.googleapis.com/perfetto/sqlite-amalgamation-3250300.zip',
121 'b78c2cb0d2c9182686c582312479f96a82bf5380', 'all'),
122 ('buildtools/sqlite_src.zip',
123 'https://storage.googleapis.com/perfetto/sqlite-src-3250300.zip',
124 'd1af2883bb800852946f9bf8ab6055e7698e18ee', 'all'),
Primiano Tucci0d72a312018-08-07 14:42:45 +0100125
Matthew Clarkson63028d62019-10-10 15:48:23 +0100126 # JsonCpp for legacy json import. Used only by the trace processor in
127 # standalone builds.
128 ('buildtools/jsoncpp.zip',
129 'https://github.com/open-source-parsers/jsoncpp/archive/1.0.0.zip',
130 '3219e26f2e249bb46b7d688478208c7ec138fea4', 'all'),
Florian Mayer475bd7e2018-08-07 20:04:03 +0100131
Matthew Clarkson63028d62019-10-10 15:48:23 +0100132 # These dependencies are for libunwindstack, which is used by src/profiling.
133 ('buildtools/android-core',
134 'https://android.googlesource.com/platform/system/core.git',
Florian Mayer961274c2020-01-23 18:31:49 +0000135 '8bf4e29e44098e3232ff646331675fb113064162', 'all'),
Matthew Clarkson63028d62019-10-10 15:48:23 +0100136 ('buildtools/lzma',
137 'https://android.googlesource.com/platform/external/lzma.git',
138 '7851dce6f4ca17f5caa1c93a4e0a45686b1d56c3', 'all'),
139 ('buildtools/zlib',
140 'https://android.googlesource.com/platform/external/zlib.git',
141 'dfa0646a03b4e1707469e04dc931b09774968fe6', 'all'),
142 ('buildtools/bionic',
143 'https://android.googlesource.com/platform/bionic.git',
144 'a60488109cda997dfd83832731c8527feaa2825e', 'all'),
Florian Mayer475bd7e2018-08-07 20:04:03 +0100145
Matthew Clarkson63028d62019-10-10 15:48:23 +0100146 # Example traces for regression tests.
147 (
148 'buildtools/test_data.zip',
Primiano Tucci50446cb2020-02-14 10:40:23 +0000149 'https://storage.googleapis.com/perfetto/test-data-20200213-221940.zip',
150 '347f825269aaa9a61c9f746febee14a451391389',
Matthew Clarkson63028d62019-10-10 15:48:23 +0100151 'all',
152 ),
Hector Dearman7f71d0e2018-08-09 11:26:10 +0100153
Matthew Clarkson63028d62019-10-10 15:48:23 +0100154 # Linenoise, used only by trace_processor in standalone builds.
155 ('buildtools/linenoise',
156 'https://fuchsia.googlesource.com/third_party/linenoise.git',
157 'c894b9e59f02203dbe4e2be657572cf88c4230c3', 'all'),
Primiano Tuccid7750452017-09-29 14:38:51 +0100158]
159
160# Dependencies required to build Android code.
161# URLs and SHA1s taken from:
162# - https://dl.google.com/android/repository/repository-11.xml
163# - https://dl.google.com/android/repository/sys-img/android/sys-img.xml
164BUILD_DEPS_ANDROID = [
Matthew Clarkson63028d62019-10-10 15:48:23 +0100165 # Android NDK
166 ('buildtools/ndk.zip',
167 'https://dl.google.com/android/repository/android-ndk-r17b-darwin-x86_64.zip',
168 'f990aafaffec0b583d2c5420bfa622e52ac14248', 'darwin'),
169 ('buildtools/ndk.zip',
170 'https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip',
Matthew Clarkson40e48192019-10-28 12:35:01 +0000171 'dd5762ee7ef4995ad04fe0c45a608c344d99ca9f', 'linux'),
Primiano Tuccid7750452017-09-29 14:38:51 +0100172]
Primiano Tucciae2879e2017-09-27 11:02:09 +0900173
Primiano Tuccid7750452017-09-29 14:38:51 +0100174# Dependencies required to run Android tests.
175TEST_DEPS_ANDROID = [
Matthew Clarkson63028d62019-10-10 15:48:23 +0100176 # Android emulator images.
177 ('buildtools/aosp-arm.zip',
178 'https://storage.googleapis.com/perfetto/aosp-02022018-arm.zip',
179 'a480d5e7d3ca888b0a58fe15ce76b1791537429a', 'all'),
Primiano Tucciae2879e2017-09-27 11:02:09 +0900180
Matthew Clarkson63028d62019-10-10 15:48:23 +0100181 # platform-tools.zip contains adb binaries.
182 ('buildtools/android_sdk/platform-tools.zip',
183 'https://dl.google.com/android/repository/platform-tools_r26.0.0-darwin.zip',
184 'e75b6137dc444f777eb02f44a6d9819b3aabff82', 'darwin'),
185 ('buildtools/android_sdk/platform-tools.zip',
186 'https://dl.google.com/android/repository/platform-tools_r26.0.0-linux.zip',
Matthew Clarkson40e48192019-10-28 12:35:01 +0000187 '00de8a6631405b617c10f68cd11ff2e1cd528e23', 'linux'),
Primiano Tucci0825bc82017-09-28 18:50:23 +0100188
Matthew Clarkson63028d62019-10-10 15:48:23 +0100189 # Android emulator binaries.
190 ('buildtools/emulator',
191 'https://android.googlesource.com/platform/prebuilts/android-emulator.git',
192 '4b260028dc27bc92c39bee9129cb2ba839970956', 'all'),
Primiano Tuccid7750452017-09-29 14:38:51 +0100193]
Primiano Tucciae2879e2017-09-27 11:02:09 +0900194
Primiano Tucci1c752c12018-10-23 09:27:19 +0100195# This variable is updated by tools/roll-catapult-trace-viewer.
Hector Dearman3b52d142020-01-30 14:47:04 +0000196CATAPULT_SHA1 = '424c420ca02fc12b080b889b5c2cafa1745299c5'
Primiano Tucci1c752c12018-10-23 09:27:19 +0100197
Primiano Tucci32ea1032020-01-07 13:53:23 +0000198TYPEFACES_SHA1 = '4fb455de506f8a2859dc5264b8448c2559b08ab8'
Hector Dearman6177b752019-01-24 10:17:32 +0000199
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100200UI_DEPS = [
Matthew Clarkson63028d62019-10-10 15:48:23 +0100201 ('buildtools/nodejs.tgz',
202 'https://storage.googleapis.com/perfetto/node-v10.3.0-darwin-x64.tar.gz',
203 '6d9a122785f38c256add3b25f74adf125497861a', 'darwin'),
204 ('buildtools/nodejs.tgz',
205 'https://storage.googleapis.com/perfetto/node-v10.3.0-linux-x64.tar.xz',
Matthew Clarkson40e48192019-10-28 12:35:01 +0000206 '118f6ea19f75089b3f12ac2ddfce357bff872b5e', 'linux'),
Matthew Clarkson63028d62019-10-10 15:48:23 +0100207 ('buildtools/emsdk/emscripten.tgz',
208 'https://storage.googleapis.com/perfetto/emscripten-1.37.40.tar.gz',
209 '588c28221321ebbdfc8e3a6f47ea6106f589669b', 'all'),
210 ('buildtools/emsdk/llvm.tgz',
211 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-darwin.tar.gz',
212 '7a894ef0a52821c62f6abaac552dc4ce5d424607', 'darwin'),
213 ('buildtools/emsdk/llvm.tgz',
214 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-static-linux.tar.gz',
Matthew Clarkson40e48192019-10-28 12:35:01 +0000215 '478501b9b7a14884e546c84efe209a90052cbb07', 'linux'),
Matthew Clarkson63028d62019-10-10 15:48:23 +0100216 ('buildtools/d8.tgz',
Matthew Clarkson40e48192019-10-28 12:35:01 +0000217 'https://storage.googleapis.com/perfetto/d8-linux-5.7.492.65.tar.gz',
218 '95e82ad7faf0a6f74d950c2aa65e3858b7bdb6c6', 'linux'),
Matthew Clarkson63028d62019-10-10 15:48:23 +0100219 ('buildtools/d8.tgz',
220 'https://storage.googleapis.com/perfetto/d8-darwin-6.6.346.32.tar.gz',
221 '1abd630619bb1977ab62095570a113d782a1545d', 'darwin'),
222 ('buildtools/catapult_trace_viewer.tgz',
223 'https://storage.googleapis.com/perfetto/catapult_trace_viewer-%s.tar.gz' %
224 CATAPULT_SHA1, CATAPULT_SHA1, 'all'),
225 ('buildtools/typefaces.tgz',
226 'https://storage.googleapis.com/perfetto/typefaces-%s.tar.gz' %
227 TYPEFACES_SHA1, TYPEFACES_SHA1, 'all')
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100228]
229
Primiano Tucciae2879e2017-09-27 11:02:09 +0900230ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
Primiano Tucci69132a12020-02-07 22:33:06 +0000231UI_DIR = os.path.join(ROOT_DIR, 'ui')
232NODE_MODULES_STATUS_FILE = os.path.join(UI_DIR, 'node_modules', '.last_install')
Primiano Tucciae2879e2017-09-27 11:02:09 +0900233
234
235def ReadFile(path):
236 if not os.path.exists(path):
237 return None
238 with open(path) as f:
Matthew Clarkson63028d62019-10-10 15:48:23 +0100239 return f.read().strip()
Primiano Tucciae2879e2017-09-27 11:02:09 +0900240
241
Primiano Tucci0825bc82017-09-28 18:50:23 +0100242def MkdirRecursive(path):
243 # Works with both relative and absolute paths
244 cwd = '/' if path.startswith('/') else ROOT_DIR
245 for part in path.split('/'):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900246 cwd = os.path.join(cwd, part)
247 if not os.path.exists(cwd):
248 os.makedirs(cwd)
249 else:
Matthew Clarkson63028d62019-10-10 15:48:23 +0100250 assert (os.path.isdir(cwd))
Primiano Tucciae2879e2017-09-27 11:02:09 +0900251
252
253def HashLocalFile(path):
254 if not os.path.exists(path):
255 return None
256 with open(path, 'rb') as f:
257 return hashlib.sha1(f.read()).hexdigest()
258
259
260def ExtractZipfilePreservePermissions(zf, info, path):
261 zf.extract(info.filename, path=path)
262 target_path = os.path.join(path, info.filename)
263 min_acls = 0o755 if info.filename.endswith('/') else 0o644
Matthew Clarkson9a5dfa52019-10-03 09:54:04 +0100264 os.chmod(target_path, (info.external_attr >> 16) | min_acls)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900265
266
Primiano Tucci0825bc82017-09-28 18:50:23 +0100267def IsGitRepoCheckoutOutAtRevision(path, revision):
268 return ReadFile(os.path.join(path, '.git', 'HEAD')) == revision
269
270
Primiano Tucci69132a12020-02-07 22:33:06 +0000271def CheckoutGitRepo(path, git_url, revision, check_only):
Primiano Tucci0825bc82017-09-28 18:50:23 +0100272 if IsGitRepoCheckoutOutAtRevision(path, revision):
Eric Seckler676421f2019-02-12 14:43:31 +0000273 return False
Primiano Tucci69132a12020-02-07 22:33:06 +0000274 if check_only:
275 return True
Primiano Tucci0825bc82017-09-28 18:50:23 +0100276 if os.path.exists(path):
277 shutil.rmtree(path)
278 MkdirRecursive(path)
279 logging.info('Fetching %s @ %s into %s', git_url, revision, path)
Lalit Maganti367fcd52018-02-05 16:06:13 +0000280 subprocess.check_call(['git', 'init', path], cwd=path)
281 subprocess.check_call(
Matthew Clarkson63028d62019-10-10 15:48:23 +0100282 ['git', 'fetch', '--quiet', '--depth', '1', git_url, revision], cwd=path)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100283 subprocess.check_call(['git', 'checkout', revision, '--quiet'], cwd=path)
Matthew Clarkson63028d62019-10-10 15:48:23 +0100284 assert (IsGitRepoCheckoutOutAtRevision(path, revision))
Eric Seckler676421f2019-02-12 14:43:31 +0000285 return True
Primiano Tucci0825bc82017-09-28 18:50:23 +0100286
Sami Kyostilac7ddac72019-06-05 21:43:40 +0100287
Deepanjan Royacf8c072018-07-13 11:37:04 -0400288def InstallNodeModules():
Primiano Tucci69132a12020-02-07 22:33:06 +0000289 logging.info("Running npm install in {0}".format(UI_DIR))
290 subprocess.check_call([os.path.join(UI_DIR, 'npm'), 'install', '--no-save'],
291 cwd=UI_DIR)
292 with open(NODE_MODULES_STATUS_FILE, 'w') as f:
293 f.write(HashLocalFile(os.path.join(UI_DIR, 'package-lock.json')))
294
295
296def CheckNodeModules():
297 """Returns True if the modules are up-to-date.
298
299 There doesn't seem to be an easy way to check node modules versions. Instead
300 just check if package-lock.json changed since the last `npm install` call.
301 """
302 if not os.path.exists(NODE_MODULES_STATUS_FILE):
303 return False
304 with open(NODE_MODULES_STATUS_FILE, 'r') as f:
305 actual = f.read()
306 expected = HashLocalFile(os.path.join(UI_DIR, 'package-lock.json'))
307 return expected == actual
Primiano Tucci0825bc82017-09-28 18:50:23 +0100308
Sami Kyostilac7ddac72019-06-05 21:43:40 +0100309
310def CheckHashes():
Matthew Clarkson63028d62019-10-10 15:48:23 +0100311 for deps in [BUILD_DEPS_HOST, BUILD_DEPS_ANDROID, TEST_DEPS_ANDROID, UI_DEPS]:
Sami Kyostilac7ddac72019-06-05 21:43:40 +0100312 for rel_path, url, expected_sha1, platform in deps:
313 if url.endswith('.git'):
314 continue
315 logging.info('Downloading %s from %s', rel_path, url)
316 with tempfile.NamedTemporaryFile(delete=False) as f:
317 f.close()
Matthew Clarkson9a5dfa52019-10-03 09:54:04 +0100318 urlretrieve(url, f.name)
Sami Kyostilac7ddac72019-06-05 21:43:40 +0100319 actual_sha1 = HashLocalFile(f.name)
320 os.unlink(f.name)
321 if (actual_sha1 != expected_sha1):
322 logging.fatal('SHA1 mismatch for {} expected {} was {}'.format(
323 url, expected_sha1, actual_sha1))
324
325
Primiano Tucciae2879e2017-09-27 11:02:09 +0900326def Main():
327 parser = argparse.ArgumentParser()
Primiano Tucci69132a12020-02-07 22:33:06 +0000328 parser.add_argument('--android', action='store_true')
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100329 parser.add_argument('--ui', action='store_true')
Primiano Tucci69132a12020-02-07 22:33:06 +0000330 parser.add_argument('--check-only')
331 parser.add_argument('--verify', help='Check all URLs', action='store_true')
Primiano Tucciae2879e2017-09-27 11:02:09 +0900332 args = parser.parse_args()
Primiano Tucci69132a12020-02-07 22:33:06 +0000333 if args.verify:
Sami Kyostilac7ddac72019-06-05 21:43:40 +0100334 CheckHashes()
335 return 0
Primiano Tuccid7750452017-09-29 14:38:51 +0100336 deps = BUILD_DEPS_HOST
Primiano Tucci69132a12020-02-07 22:33:06 +0000337 if args.android:
Primiano Tuccid7750452017-09-29 14:38:51 +0100338 deps += BUILD_DEPS_ANDROID + TEST_DEPS_ANDROID
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100339 if args.ui:
340 deps += UI_DEPS
Eric Seckler6e828f32019-01-02 11:10:56 +0000341 deps_updated = False
Primiano Tuccid7750452017-09-29 14:38:51 +0100342 for rel_path, url, expected_sha1, platform in deps:
Matthew Clarkson40e48192019-10-28 12:35:01 +0000343 if (platform != 'all' and platform != system().lower()):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900344 continue
Primiano Tucciae2879e2017-09-27 11:02:09 +0900345 local_path = os.path.join(ROOT_DIR, rel_path)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100346 if url.endswith('.git'):
Primiano Tucci69132a12020-02-07 22:33:06 +0000347 deps_updated |= CheckoutGitRepo(local_path, url, expected_sha1,
348 args.check_only)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100349 continue
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000350 is_zip = local_path.endswith('.zip') or local_path.endswith('.tgz')
Primiano Tucciae2879e2017-09-27 11:02:09 +0900351 zip_target_dir = local_path[:-4] if is_zip else None
352 zip_dir_stamp = os.path.join(zip_target_dir, '.stamp') if is_zip else None
353
354 if ((not is_zip and HashLocalFile(local_path) == expected_sha1) or
355 (is_zip and ReadFile(zip_dir_stamp) == expected_sha1)):
356 continue
Eric Seckler6e828f32019-01-02 11:10:56 +0000357 deps_updated = True
Primiano Tucci69132a12020-02-07 22:33:06 +0000358 if args.check_only:
359 continue
Primiano Tucciae2879e2017-09-27 11:02:09 +0900360 MkdirRecursive(os.path.dirname(rel_path))
361 if HashLocalFile(local_path) != expected_sha1:
362 download_path = local_path + '.tmp'
363 logging.info('Downloading %s from %s', local_path, url)
Matthew Clarkson9a5dfa52019-10-03 09:54:04 +0100364 urlretrieve(url, download_path)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900365 os.chmod(download_path, 0o755)
Hector Dearmand9628d32018-10-17 14:38:26 +0100366 actual_sha1 = HashLocalFile(download_path)
367 if (actual_sha1 != expected_sha1):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900368 os.remove(download_path)
Hector Dearmand9628d32018-10-17 14:38:26 +0100369 logging.fatal('SHA1 mismatch for {} expected {} was {}'.format(
370 download_path, expected_sha1, actual_sha1))
Primiano Tucciae2879e2017-09-27 11:02:09 +0900371 return 1
372 os.rename(download_path, local_path)
Matthew Clarkson63028d62019-10-10 15:48:23 +0100373 assert (HashLocalFile(local_path) == expected_sha1)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900374
375 if is_zip:
376 logging.info('Extracting %s into %s' % (local_path, zip_target_dir))
Matthew Clarkson63028d62019-10-10 15:48:23 +0100377 assert (os.path.commonprefix((ROOT_DIR, zip_target_dir)) == ROOT_DIR)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900378 if os.path.exists(zip_target_dir):
379 logging.info('Deleting stale dir %s' % zip_target_dir)
380 shutil.rmtree(zip_target_dir)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900381
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000382 # Decompress the archive.
383 if local_path.endswith('.tgz'):
384 MkdirRecursive(zip_target_dir)
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100385 subprocess.check_call(['tar', '-xf', local_path], cwd=zip_target_dir)
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000386 elif local_path.endswith('.zip'):
387 with zipfile.ZipFile(local_path, 'r') as zf:
388 for info in zf.infolist():
389 ExtractZipfilePreservePermissions(zf, info, zip_target_dir)
390
391 # If the zip contains one root folder, rebase one level up moving all
392 # its sub files and folders inside |target_dir|.
393 subdir = os.listdir(zip_target_dir)
394 if len(subdir) == 1:
395 subdir = os.path.join(zip_target_dir, subdir[0])
396 if os.path.isdir(subdir):
397 for subf in os.listdir(subdir):
Matthew Clarkson63028d62019-10-10 15:48:23 +0100398 shutil.move(os.path.join(subdir, subf), zip_target_dir)
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000399 os.rmdir(subdir)
400
401 # Create stamp and remove the archive.
402 with open(zip_dir_stamp, 'w') as stamp_file:
403 stamp_file.write(expected_sha1)
404 os.remove(local_path)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900405
Deepanjan Royacf8c072018-07-13 11:37:04 -0400406 if args.ui:
407 # Needs to happen after nodejs is installed above.
Primiano Tucci69132a12020-02-07 22:33:06 +0000408 if args.check_only:
409 deps_updated = not CheckNodeModules()
410 else:
411 InstallNodeModules()
412
413 if args.check_only:
414 if not deps_updated:
415 with open(args.check_only, 'w') as f:
416 f.write('OK') # The content is irrelevant, just keep GN happy.
417 return 0
418 argz = ' '.join([x for x in sys.argv[1:] if not '--check-only' in x])
419 sys.stderr.write('\033[91mBuild deps are stale. ' +
420 'Please run tools/install-build-deps %s\033[0m' % argz)
421 return 1
Primiano Tucciae2879e2017-09-27 11:02:09 +0900422
Eric Seckler6e828f32019-01-02 11:10:56 +0000423 if deps_updated:
424 # Stale binary files may be compiled against old sysroot headers that aren't
425 # tracked by gn.
Matthew Clarkson9a5dfa52019-10-03 09:54:04 +0100426 logging.warning('Remember to run "gn clean <output_directory>" ' +
427 'to avoid stale binary files.')
Eric Seckler6e828f32019-01-02 11:10:56 +0000428
Matthew Clarkson63028d62019-10-10 15:48:23 +0100429
Primiano Tucciae2879e2017-09-27 11:02:09 +0900430if __name__ == '__main__':
431 logging.basicConfig(level=logging.INFO)
432 sys.exit(Main())