Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 1 | #!/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 | |
| 16 | import argparse |
| 17 | import hashlib |
| 18 | import logging |
| 19 | import os |
| 20 | import shutil |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 21 | import subprocess |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 22 | import sys |
Sami Kyostila | c7ddac7 | 2019-06-05 21:43:40 +0100 | [diff] [blame] | 23 | import tempfile |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 24 | import urllib |
| 25 | import zipfile |
| 26 | |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 27 | from collections import namedtuple |
| 28 | |
Primiano Tucci | 636ede1 | 2017-10-30 16:03:07 +0000 | [diff] [blame] | 29 | # When adding a new git dependency here please also add a corresponding entry in |
| 30 | # .travis.yml under the "cache:" section. |
| 31 | |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 32 | # The format for the deps below is the following: |
| 33 | # (target_folder, source_url, sha1, target_platform) |
| 34 | # |source_url| can be either a git repo or a http url. |
| 35 | # If a git repo, |sha1| is the committish that will be checked out. |
| 36 | # If a http url, |sha1| is the shasum of the original file. |
| 37 | # If the url is a .zip or .tgz file it will be automatically deflated under |
| 38 | # |target_folder|, taking care of stripping the root folder if it's a single |
| 39 | # root (to avoid ending up with buildtools/protobuf/protobuf-1.2.3/... and have |
| 40 | # instead just buildtools/protobuf). |
| 41 | # |target_platform| is either 'darwin', 'linux2' or 'all' and applies the dep |
| 42 | # only on the given platform (ask python why linux2 and not just linux). |
| 43 | |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 44 | # Dependencies required to build code on the host or when targeting desktop OS. |
| 45 | BUILD_DEPS_HOST = [ |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 46 | # GN |
| 47 | ('buildtools/mac/gn', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 48 | 'https://storage.googleapis.com/perfetto/gn-mac-b5b65ca39d93a7cde9fa713be31b114755252f28', |
| 49 | 'b5b65ca39d93a7cde9fa713be31b114755252f28', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 50 | 'darwin' |
| 51 | ), |
| 52 | ('buildtools/linux64/gn', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 53 | 'https://storage.googleapis.com/perfetto/gn-linux64-1370d9c5358868b7b66292821b6fe61950826870', |
| 54 | '1370d9c5358868b7b66292821b6fe61950826870', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 55 | 'linux2' |
| 56 | ), |
| 57 | |
Primiano Tucci | 104bd6d | 2017-10-12 00:10:24 +0200 | [diff] [blame] | 58 | # clang-format |
| 59 | ('buildtools/mac/clang-format', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 60 | 'https://storage.googleapis.com/chromium-clang-format/025ca7c75f37ef4a40f3a67d81ddd11d7d0cdb9b', |
| 61 | '025ca7c75f37ef4a40f3a67d81ddd11d7d0cdb9b', |
Primiano Tucci | 104bd6d | 2017-10-12 00:10:24 +0200 | [diff] [blame] | 62 | 'darwin' |
| 63 | ), |
| 64 | ('buildtools/linux64/clang-format', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 65 | 'https://storage.googleapis.com/chromium-clang-format/942fc8b1789144b8071d3fc03ff0fcbe1cf81ac8', |
| 66 | '942fc8b1789144b8071d3fc03ff0fcbe1cf81ac8', |
Primiano Tucci | 104bd6d | 2017-10-12 00:10:24 +0200 | [diff] [blame] | 67 | 'linux2' |
| 68 | ), |
| 69 | # Keep the SHA1 in sync with |clang_format_rev| in chromium //buildtools/DEPS. |
| 70 | ('buildtools/clang_format/script', |
| 71 | 'https://chromium.googlesource.com/chromium/llvm-project/cfe/tools/clang-format.git', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 72 | '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Primiano Tucci | 104bd6d | 2017-10-12 00:10:24 +0200 | [diff] [blame] | 73 | 'all' |
| 74 | ), |
| 75 | |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 76 | # Ninja |
| 77 | ('buildtools/mac/ninja', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 78 | 'https://storage.googleapis.com/perfetto/ninja-mac-c15b0698da038b2bd2e8970c14c75fadc06b1add', |
| 79 | 'c15b0698da038b2bd2e8970c14c75fadc06b1add', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 80 | 'darwin' |
| 81 | ), |
| 82 | ('buildtools/linux64/ninja', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 83 | 'https://storage.googleapis.com/perfetto/ninja-linux64-c866952bda50c29a669222477309287119bbb7e8', |
| 84 | 'c866952bda50c29a669222477309287119bbb7e8', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 85 | 'linux2' |
| 86 | ), |
| 87 | |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 88 | # Keep in sync with Android's //external/googletest/README.version. |
| 89 | ('buildtools/googletest.zip', |
| 90 | 'https://github.com/google/googletest/archive/ff07a5de0e81580547f1685e101194ed1a4fcd56.zip', |
| 91 | 'c7edec7d7e6db1fc37a20710de9c4d89e3a3893b', |
| 92 | 'all' |
| 93 | ), |
| 94 | |
| 95 | # Keep in sync with Android's //external/protobuf/README.version. |
| 96 | ('buildtools/protobuf.zip', |
| 97 | 'https://github.com/google/protobuf/releases/download/v3.0.0-beta-3/protobuf-cpp-3.0.0-beta-3.zip', |
| 98 | '3caec60aa9d8eefc8c3c3201b6b8ca19935edb89', |
| 99 | 'all' |
| 100 | ), |
| 101 | |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 102 | # libc++, libc++abi and libunwind for Linux where we need to rebuild the C++ |
| 103 | # lib from sources. Keep the SHA1s in sync with Chrome's src/buildtools/DEPS. |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 104 | ('buildtools/libcxx', |
| 105 | 'https://chromium.googlesource.com/chromium/llvm-project/libcxx.git', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 106 | '5938e0582bac570a41edb3d6a2217c299adc1bc6', |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 107 | 'all' |
| 108 | ), |
| 109 | ('buildtools/libcxxabi', |
| 110 | 'https://chromium.googlesource.com/chromium/llvm-project/libcxxabi.git', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 111 | '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 112 | 'all' |
| 113 | ), |
Primiano Tucci | 7278dea | 2017-10-31 11:50:32 +0000 | [diff] [blame] | 114 | ('buildtools/libunwind', |
| 115 | 'https://chromium.googlesource.com/external/llvm.org/libunwind.git', |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 116 | '69d9b84cca8354117b9fe9705a4430d789ee599b', |
Primiano Tucci | 7278dea | 2017-10-31 11:50:32 +0000 | [diff] [blame] | 117 | 'all' |
| 118 | ), |
Hector Dearman | 88a1011 | 2017-10-12 11:07:10 +0100 | [diff] [blame] | 119 | |
Primiano Tucci | 335412d | 2019-05-30 16:29:16 +0100 | [diff] [blame] | 120 | # Keep the revision in sync with Chrome's PACKAGE_VERSION in |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 121 | # tools/clang/scripts/update.py. |
| 122 | ('buildtools/clang.tgz', |
Primiano Tucci | d4aa37b | 2019-08-21 13:38:06 +0200 | [diff] [blame^] | 123 | 'https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-365097-f7e52fbd-8.tgz', |
| 124 | 'fe1b1e5bd7381ae655661cb9658487389561568d', |
Primiano Tucci | a65497e | 2018-09-26 19:53:58 +0100 | [diff] [blame] | 125 | 'linux2' |
| 126 | ), |
| 127 | |
| 128 | # Keep in sync with chromium DEPS. |
| 129 | ('buildtools/libfuzzer', |
| 130 | 'https://chromium.googlesource.com/chromium/llvm-project/compiler-rt/lib/fuzzer.git', |
Florian Mayer | a85b8fa | 2019-07-11 11:00:48 +0100 | [diff] [blame] | 131 | 'b9f51dc8c98065df0c8da13c051046f5bab833db', |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 132 | 'linux2' |
| 133 | ), |
| 134 | |
Hector Dearman | 88a1011 | 2017-10-12 11:07:10 +0100 | [diff] [blame] | 135 | # Benchmarking tool. |
| 136 | ('buildtools/benchmark.zip', |
Lalit Maganti | c99d93c | 2018-03-22 15:09:30 +0000 | [diff] [blame] | 137 | 'https://github.com/google/benchmark/archive/v1.3.0.zip', |
| 138 | 'f387e0df37d54bfd5be239e8d0d3ea2e2c3e34f4', |
Hector Dearman | 88a1011 | 2017-10-12 11:07:10 +0100 | [diff] [blame] | 139 | 'all' |
| 140 | ), |
Primiano Tucci | 38faa6f | 2018-04-01 20:12:08 +0200 | [diff] [blame] | 141 | |
| 142 | # Libbacktrace, for stacktraces in Linux/Android debug builds. |
| 143 | ('buildtools/libbacktrace.zip', |
| 144 | 'https://github.com/ianlancetaylor/libbacktrace/archive/177940370e4a6b2509e92a0aaa9749184e64af43.zip', |
| 145 | 'b723fe9d671d1ab54df1297f6afbf2893a41c3ea', |
| 146 | 'all' |
| 147 | ), |
Lalit Maganti | 6fe26e6 | 2018-05-23 12:14:38 +0100 | [diff] [blame] | 148 | |
| 149 | # Sqlite for the trace processing library. |
Ioannis Ilkos | 178535e | 2018-11-05 17:32:45 +0000 | [diff] [blame] | 150 | # This is the amalgamated source whose compiled output is meant to be faster. |
| 151 | # We still pull the full source for the extensions (not amalgamated). |
Lalit Maganti | 6fe26e6 | 2018-05-23 12:14:38 +0100 | [diff] [blame] | 152 | ('buildtools/sqlite.zip', |
Lalit Maganti | 10d6deb | 2018-11-20 15:15:50 +0000 | [diff] [blame] | 153 | 'https://storage.googleapis.com/perfetto/sqlite-amalgamation-3250300.zip', |
| 154 | 'b78c2cb0d2c9182686c582312479f96a82bf5380', |
Lalit Maganti | 6fe26e6 | 2018-05-23 12:14:38 +0100 | [diff] [blame] | 155 | 'all' |
| 156 | ), |
Ioannis Ilkos | 178535e | 2018-11-05 17:32:45 +0000 | [diff] [blame] | 157 | ('buildtools/sqlite_src.zip', |
Lalit Maganti | 10d6deb | 2018-11-20 15:15:50 +0000 | [diff] [blame] | 158 | 'https://storage.googleapis.com/perfetto/sqlite-src-3250300.zip', |
| 159 | 'd1af2883bb800852946f9bf8ab6055e7698e18ee', |
Ioannis Ilkos | 178535e | 2018-11-05 17:32:45 +0000 | [diff] [blame] | 160 | 'all' |
| 161 | ), |
Primiano Tucci | 0d72a31 | 2018-08-07 14:42:45 +0100 | [diff] [blame] | 162 | |
| 163 | # JsonCpp for legacy json import. Used only by the trace processor in |
| 164 | # standalone builds. |
| 165 | ('buildtools/jsoncpp.zip', |
Lalit Maganti | 36d229a | 2019-07-12 10:09:39 +0000 | [diff] [blame] | 166 | 'https://github.com/open-source-parsers/jsoncpp/archive/1.0.0.zip', |
| 167 | '3219e26f2e249bb46b7d688478208c7ec138fea4', |
Primiano Tucci | 0d72a31 | 2018-08-07 14:42:45 +0100 | [diff] [blame] | 168 | 'all' |
| 169 | ), |
Florian Mayer | 475bd7e | 2018-08-07 20:04:03 +0100 | [diff] [blame] | 170 | |
Florian Mayer | f833566 | 2018-08-08 11:30:32 +0100 | [diff] [blame] | 171 | # These dependencies are for libunwindstack, which is used by src/profiling. |
| 172 | ('buildtools/android-core', |
Florian Mayer | 475bd7e | 2018-08-07 20:04:03 +0100 | [diff] [blame] | 173 | 'https://android.googlesource.com/platform/system/core.git', |
Florian Mayer | 96e1f08 | 2019-07-10 10:42:01 +0100 | [diff] [blame] | 174 | '3f407fcc37b401c91784700c0a691ba8b1f7ef15', |
Florian Mayer | 475bd7e | 2018-08-07 20:04:03 +0100 | [diff] [blame] | 175 | 'all' |
| 176 | ), |
| 177 | |
| 178 | ('buildtools/lzma', |
| 179 | 'https://android.googlesource.com/platform/external/lzma.git', |
| 180 | '7851dce6f4ca17f5caa1c93a4e0a45686b1d56c3', |
| 181 | 'all' |
| 182 | ), |
Hector Dearman | 7f71d0e | 2018-08-09 11:26:10 +0100 | [diff] [blame] | 183 | |
Hector Dearman | e0b993f | 2019-05-24 18:48:16 +0100 | [diff] [blame] | 184 | ('buildtools/zlib', |
| 185 | 'https://android.googlesource.com/platform/external/zlib.git', |
| 186 | 'dfa0646a03b4e1707469e04dc931b09774968fe6', |
| 187 | 'all' |
| 188 | ), |
| 189 | |
Florian Mayer | b64d6b1 | 2018-08-30 10:46:30 -0700 | [diff] [blame] | 190 | ('buildtools/bionic', |
| 191 | 'https://android.googlesource.com/platform/bionic.git', |
Primiano Tucci | 1721b1a | 2019-02-17 14:18:07 +0000 | [diff] [blame] | 192 | 'a60488109cda997dfd83832731c8527feaa2825e', |
Florian Mayer | b64d6b1 | 2018-08-30 10:46:30 -0700 | [diff] [blame] | 193 | 'all' |
| 194 | ), |
| 195 | |
Hector Dearman | 7f71d0e | 2018-08-09 11:26:10 +0100 | [diff] [blame] | 196 | # Example traces for regression tests. |
| 197 | ('buildtools/test_data.zip', |
Hector Dearman | 33610d2 | 2019-08-07 13:00:20 +0100 | [diff] [blame] | 198 | 'https://storage.googleapis.com/perfetto/test-data-20190807-125643.zip', |
| 199 | 'abd9bc3e9f9e74ec6810b5c9bd1f15713a9a58ec', |
Hector Dearman | 7f71d0e | 2018-08-09 11:26:10 +0100 | [diff] [blame] | 200 | 'all', |
| 201 | ), |
Hector Dearman | e44ad45 | 2018-09-21 11:51:57 +0100 | [diff] [blame] | 202 | |
Primiano Tucci | 21d41a7 | 2018-09-24 23:12:04 +0100 | [diff] [blame] | 203 | # Linenoise, used only by trace_processor in standalone builds. |
Hector Dearman | e44ad45 | 2018-09-21 11:51:57 +0100 | [diff] [blame] | 204 | ('buildtools/linenoise', |
Primiano Tucci | 21d41a7 | 2018-09-24 23:12:04 +0100 | [diff] [blame] | 205 | 'https://fuchsia.googlesource.com/third_party/linenoise.git', |
| 206 | 'c894b9e59f02203dbe4e2be657572cf88c4230c3', |
Hector Dearman | e44ad45 | 2018-09-21 11:51:57 +0100 | [diff] [blame] | 207 | 'all' |
| 208 | ), |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 209 | ] |
| 210 | |
| 211 | # Dependencies required to build Android code. |
| 212 | # URLs and SHA1s taken from: |
| 213 | # - https://dl.google.com/android/repository/repository-11.xml |
| 214 | # - https://dl.google.com/android/repository/sys-img/android/sys-img.xml |
| 215 | BUILD_DEPS_ANDROID = [ |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 216 | # Android NDK |
| 217 | ('buildtools/ndk.zip', |
Florian Mayer | aa5316b | 2018-08-20 17:45:12 -0700 | [diff] [blame] | 218 | 'https://dl.google.com/android/repository/android-ndk-r17b-darwin-x86_64.zip', |
| 219 | 'f990aafaffec0b583d2c5420bfa622e52ac14248', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 220 | 'darwin' |
| 221 | ), |
| 222 | ('buildtools/ndk.zip', |
Florian Mayer | aa5316b | 2018-08-20 17:45:12 -0700 | [diff] [blame] | 223 | 'https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip', |
| 224 | 'dd5762ee7ef4995ad04fe0c45a608c344d99ca9f', |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 225 | 'linux2' |
| 226 | ), |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 227 | ] |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 228 | |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 229 | # Dependencies required to run Android tests. |
| 230 | TEST_DEPS_ANDROID = [ |
Lalit Maganti | 367fcd5 | 2018-02-05 16:06:13 +0000 | [diff] [blame] | 231 | # Android emulator images. |
| 232 | ('buildtools/aosp-arm.zip', |
| 233 | 'https://storage.googleapis.com/perfetto/aosp-02022018-arm.zip', |
| 234 | 'a480d5e7d3ca888b0a58fe15ce76b1791537429a', |
Primiano Tucci | e7ca7c6 | 2018-04-07 08:28:03 +0200 | [diff] [blame] | 235 | 'all' |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 236 | ), |
| 237 | |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 238 | # platform-tools.zip contains adb binaries. |
| 239 | ('buildtools/android_sdk/platform-tools.zip', |
| 240 | 'https://dl.google.com/android/repository/platform-tools_r26.0.0-darwin.zip', |
| 241 | 'e75b6137dc444f777eb02f44a6d9819b3aabff82', |
| 242 | 'darwin' |
| 243 | ), |
| 244 | ('buildtools/android_sdk/platform-tools.zip', |
| 245 | 'https://dl.google.com/android/repository/platform-tools_r26.0.0-linux.zip', |
| 246 | '00de8a6631405b617c10f68cd11ff2e1cd528e23', |
| 247 | 'linux2' |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 248 | ), |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 249 | |
Lalit Maganti | 367fcd5 | 2018-02-05 16:06:13 +0000 | [diff] [blame] | 250 | # Android emulator binaries. |
| 251 | ('buildtools/emulator', |
| 252 | 'https://android.googlesource.com/platform/prebuilts/android-emulator.git', |
| 253 | '4b260028dc27bc92c39bee9129cb2ba839970956', |
| 254 | 'all' |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 255 | ), |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 256 | ] |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 257 | |
Primiano Tucci | 1c752c1 | 2018-10-23 09:27:19 +0100 | [diff] [blame] | 258 | # This variable is updated by tools/roll-catapult-trace-viewer. |
| 259 | CATAPULT_SHA1 = 'ff5d8fd7244680b4d4456c25d5fdc04c76f9ef66' |
| 260 | |
Hector Dearman | 6177b75 | 2019-01-24 10:17:32 +0000 | [diff] [blame] | 261 | TYPEFACES_SHA1 = '756b0a015b8f99f5718f7fdf967d052c1ec55ab3' |
| 262 | |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 263 | UI_DEPS = [ |
| 264 | ('buildtools/nodejs.tgz', |
Primiano Tucci | dca9609 | 2018-05-31 11:47:16 +0100 | [diff] [blame] | 265 | 'https://storage.googleapis.com/perfetto/node-v10.3.0-darwin-x64.tar.gz', |
| 266 | '6d9a122785f38c256add3b25f74adf125497861a', |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 267 | 'darwin' |
| 268 | ), |
| 269 | ('buildtools/nodejs.tgz', |
Primiano Tucci | dca9609 | 2018-05-31 11:47:16 +0100 | [diff] [blame] | 270 | 'https://storage.googleapis.com/perfetto/node-v10.3.0-linux-x64.tar.xz', |
| 271 | '118f6ea19f75089b3f12ac2ddfce357bff872b5e', |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 272 | 'linux2' |
| 273 | ), |
| 274 | ('buildtools/emsdk/emscripten.tgz', |
| 275 | 'https://storage.googleapis.com/perfetto/emscripten-1.37.40.tar.gz', |
| 276 | '588c28221321ebbdfc8e3a6f47ea6106f589669b', |
| 277 | 'all' |
| 278 | ), |
| 279 | ('buildtools/emsdk/llvm.tgz', |
| 280 | 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-darwin.tar.gz', |
| 281 | '7a894ef0a52821c62f6abaac552dc4ce5d424607', |
| 282 | 'darwin' |
| 283 | ), |
| 284 | ('buildtools/emsdk/llvm.tgz', |
Primiano Tucci | fe19990 | 2018-06-04 12:33:04 +0200 | [diff] [blame] | 285 | 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-static-linux.tar.gz', |
| 286 | '478501b9b7a14884e546c84efe209a90052cbb07', |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 287 | 'linux2' |
| 288 | ), |
Hector Dearman | d9628d3 | 2018-10-17 14:38:26 +0100 | [diff] [blame] | 289 | ('buildtools/d8.tgz', |
| 290 | 'https://storage.googleapis.com/perfetto/d8-linux2-5.7.492.65.tar.gz', |
| 291 | '95e82ad7faf0a6f74d950c2aa65e3858b7bdb6c6', |
| 292 | 'linux2' |
| 293 | ), |
| 294 | ('buildtools/d8.tgz', |
| 295 | 'https://storage.googleapis.com/perfetto/d8-darwin-6.6.346.32.tar.gz', |
| 296 | '1abd630619bb1977ab62095570a113d782a1545d', |
| 297 | 'darwin' |
| 298 | ), |
Primiano Tucci | 1c752c1 | 2018-10-23 09:27:19 +0100 | [diff] [blame] | 299 | ('buildtools/catapult_trace_viewer.tgz', |
| 300 | 'https://storage.googleapis.com/perfetto/catapult_trace_viewer-%s.tar.gz' % CATAPULT_SHA1, |
| 301 | CATAPULT_SHA1, |
| 302 | 'all' |
| 303 | ), |
Hector Dearman | 6177b75 | 2019-01-24 10:17:32 +0000 | [diff] [blame] | 304 | ('buildtools/typefaces.tgz', |
| 305 | 'https://storage.googleapis.com/perfetto/typefaces-%s.tar.gz' % TYPEFACES_SHA1, |
| 306 | TYPEFACES_SHA1, |
| 307 | 'all' |
| 308 | ) |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 309 | ] |
| 310 | |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 311 | ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
| 312 | |
| 313 | |
| 314 | def ReadFile(path): |
| 315 | if not os.path.exists(path): |
| 316 | return None |
| 317 | with open(path) as f: |
| 318 | return f.read().strip() |
| 319 | |
| 320 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 321 | def MkdirRecursive(path): |
| 322 | # Works with both relative and absolute paths |
| 323 | cwd = '/' if path.startswith('/') else ROOT_DIR |
| 324 | for part in path.split('/'): |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 325 | cwd = os.path.join(cwd, part) |
| 326 | if not os.path.exists(cwd): |
| 327 | os.makedirs(cwd) |
| 328 | else: |
| 329 | assert(os.path.isdir(cwd)) |
| 330 | |
| 331 | |
| 332 | def HashLocalFile(path): |
| 333 | if not os.path.exists(path): |
| 334 | return None |
| 335 | with open(path, 'rb') as f: |
| 336 | return hashlib.sha1(f.read()).hexdigest() |
| 337 | |
| 338 | |
| 339 | def ExtractZipfilePreservePermissions(zf, info, path): |
| 340 | zf.extract(info.filename, path=path) |
| 341 | target_path = os.path.join(path, info.filename) |
| 342 | min_acls = 0o755 if info.filename.endswith('/') else 0o644 |
| 343 | os.chmod(target_path, (info.external_attr >> 16L) | min_acls) |
| 344 | |
| 345 | |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 346 | def IsGitRepoCheckoutOutAtRevision(path, revision): |
| 347 | return ReadFile(os.path.join(path, '.git', 'HEAD')) == revision |
| 348 | |
| 349 | |
| 350 | def CheckoutGitRepo(path, git_url, revision): |
| 351 | if IsGitRepoCheckoutOutAtRevision(path, revision): |
Eric Seckler | 676421f | 2019-02-12 14:43:31 +0000 | [diff] [blame] | 352 | return False |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 353 | if os.path.exists(path): |
| 354 | shutil.rmtree(path) |
| 355 | MkdirRecursive(path) |
| 356 | logging.info('Fetching %s @ %s into %s', git_url, revision, path) |
Lalit Maganti | 367fcd5 | 2018-02-05 16:06:13 +0000 | [diff] [blame] | 357 | subprocess.check_call(['git', 'init', path], cwd=path) |
| 358 | subprocess.check_call( |
Ryan Savitski | e957ce8 | 2018-11-06 14:53:33 +0000 | [diff] [blame] | 359 | ['git', 'fetch', '--quiet', '--depth', '1', git_url, revision], cwd=path) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 360 | subprocess.check_call(['git', 'checkout', revision, '--quiet'], cwd=path) |
| 361 | assert(IsGitRepoCheckoutOutAtRevision(path, revision)) |
Eric Seckler | 676421f | 2019-02-12 14:43:31 +0000 | [diff] [blame] | 362 | return True |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 363 | |
Sami Kyostila | c7ddac7 | 2019-06-05 21:43:40 +0100 | [diff] [blame] | 364 | |
Deepanjan Roy | acf8c07 | 2018-07-13 11:37:04 -0400 | [diff] [blame] | 365 | def InstallNodeModules(): |
| 366 | ui_dir = os.path.join(ROOT_DIR, 'ui') |
| 367 | logging.info("Running npm install in {0}".format(ui_dir)) |
| 368 | subprocess.check_call( |
| 369 | [os.path.join(ui_dir, 'npm'), 'install', '--no-save'], |
| 370 | cwd=os.path.join(ROOT_DIR, 'ui')) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 371 | |
Sami Kyostila | c7ddac7 | 2019-06-05 21:43:40 +0100 | [diff] [blame] | 372 | |
| 373 | def CheckHashes(): |
| 374 | for deps in [BUILD_DEPS_HOST, |
| 375 | BUILD_DEPS_ANDROID, |
| 376 | TEST_DEPS_ANDROID, |
| 377 | UI_DEPS]: |
| 378 | for rel_path, url, expected_sha1, platform in deps: |
| 379 | if url.endswith('.git'): |
| 380 | continue |
| 381 | logging.info('Downloading %s from %s', rel_path, url) |
| 382 | with tempfile.NamedTemporaryFile(delete=False) as f: |
| 383 | f.close() |
| 384 | urllib.urlretrieve(url, f.name) |
| 385 | actual_sha1 = HashLocalFile(f.name) |
| 386 | os.unlink(f.name) |
| 387 | if (actual_sha1 != expected_sha1): |
| 388 | logging.fatal('SHA1 mismatch for {} expected {} was {}'.format( |
| 389 | url, expected_sha1, actual_sha1)) |
| 390 | |
| 391 | |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 392 | def Main(): |
| 393 | parser = argparse.ArgumentParser() |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 394 | parser.add_argument('--no-android', action='store_true') |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 395 | parser.add_argument('--ui', action='store_true') |
Sami Kyostila | c7ddac7 | 2019-06-05 21:43:40 +0100 | [diff] [blame] | 396 | parser.add_argument('--check-hashes', help='Check hashes for all URLs', |
| 397 | action='store_true') |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 398 | args = parser.parse_args() |
Sami Kyostila | c7ddac7 | 2019-06-05 21:43:40 +0100 | [diff] [blame] | 399 | if args.check_hashes: |
| 400 | CheckHashes() |
| 401 | return 0 |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 402 | deps = BUILD_DEPS_HOST |
| 403 | if not args.no_android: |
| 404 | deps += BUILD_DEPS_ANDROID + TEST_DEPS_ANDROID |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 405 | if args.ui: |
| 406 | deps += UI_DEPS |
Eric Seckler | 6e828f3 | 2019-01-02 11:10:56 +0000 | [diff] [blame] | 407 | deps_updated = False |
Primiano Tucci | d775045 | 2017-09-29 14:38:51 +0100 | [diff] [blame] | 408 | for rel_path, url, expected_sha1, platform in deps: |
Lalit Maganti | 367fcd5 | 2018-02-05 16:06:13 +0000 | [diff] [blame] | 409 | if (platform != 'all' and platform != sys.platform): |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 410 | continue |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 411 | local_path = os.path.join(ROOT_DIR, rel_path) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 412 | if url.endswith('.git'): |
Eric Seckler | 676421f | 2019-02-12 14:43:31 +0000 | [diff] [blame] | 413 | deps_updated |= CheckoutGitRepo(local_path, url, expected_sha1) |
Primiano Tucci | 0825bc8 | 2017-09-28 18:50:23 +0100 | [diff] [blame] | 414 | continue |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 415 | is_zip = local_path.endswith('.zip') or local_path.endswith('.tgz') |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 416 | zip_target_dir = local_path[:-4] if is_zip else None |
| 417 | zip_dir_stamp = os.path.join(zip_target_dir, '.stamp') if is_zip else None |
| 418 | |
| 419 | if ((not is_zip and HashLocalFile(local_path) == expected_sha1) or |
| 420 | (is_zip and ReadFile(zip_dir_stamp) == expected_sha1)): |
| 421 | continue |
Eric Seckler | 6e828f3 | 2019-01-02 11:10:56 +0000 | [diff] [blame] | 422 | deps_updated = True |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 423 | MkdirRecursive(os.path.dirname(rel_path)) |
| 424 | if HashLocalFile(local_path) != expected_sha1: |
| 425 | download_path = local_path + '.tmp' |
| 426 | logging.info('Downloading %s from %s', local_path, url) |
| 427 | urllib.urlretrieve(url, download_path) |
| 428 | os.chmod(download_path, 0o755) |
Hector Dearman | d9628d3 | 2018-10-17 14:38:26 +0100 | [diff] [blame] | 429 | actual_sha1 = HashLocalFile(download_path) |
| 430 | if (actual_sha1 != expected_sha1): |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 431 | os.remove(download_path) |
Hector Dearman | d9628d3 | 2018-10-17 14:38:26 +0100 | [diff] [blame] | 432 | logging.fatal('SHA1 mismatch for {} expected {} was {}'.format( |
| 433 | download_path, expected_sha1, actual_sha1)) |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 434 | return 1 |
| 435 | os.rename(download_path, local_path) |
| 436 | assert(HashLocalFile(local_path) == expected_sha1) |
| 437 | |
| 438 | if is_zip: |
| 439 | logging.info('Extracting %s into %s' % (local_path, zip_target_dir)) |
| 440 | assert(os.path.commonprefix((ROOT_DIR, zip_target_dir)) == ROOT_DIR) |
| 441 | if os.path.exists(zip_target_dir): |
| 442 | logging.info('Deleting stale dir %s' % zip_target_dir) |
| 443 | shutil.rmtree(zip_target_dir) |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 444 | |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 445 | # Decompress the archive. |
| 446 | if local_path.endswith('.tgz'): |
| 447 | MkdirRecursive(zip_target_dir) |
Primiano Tucci | 4bdc4c4 | 2018-05-10 15:52:33 +0100 | [diff] [blame] | 448 | subprocess.check_call(['tar', '-xf', local_path], cwd=zip_target_dir) |
Primiano Tucci | b60d4b0 | 2017-11-10 11:03:00 +0000 | [diff] [blame] | 449 | elif local_path.endswith('.zip'): |
| 450 | with zipfile.ZipFile(local_path, 'r') as zf: |
| 451 | for info in zf.infolist(): |
| 452 | ExtractZipfilePreservePermissions(zf, info, zip_target_dir) |
| 453 | |
| 454 | # If the zip contains one root folder, rebase one level up moving all |
| 455 | # its sub files and folders inside |target_dir|. |
| 456 | subdir = os.listdir(zip_target_dir) |
| 457 | if len(subdir) == 1: |
| 458 | subdir = os.path.join(zip_target_dir, subdir[0]) |
| 459 | if os.path.isdir(subdir): |
| 460 | for subf in os.listdir(subdir): |
| 461 | shutil.move(os.path.join(subdir,subf), zip_target_dir) |
| 462 | os.rmdir(subdir) |
| 463 | |
| 464 | # Create stamp and remove the archive. |
| 465 | with open(zip_dir_stamp, 'w') as stamp_file: |
| 466 | stamp_file.write(expected_sha1) |
| 467 | os.remove(local_path) |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 468 | |
Deepanjan Roy | acf8c07 | 2018-07-13 11:37:04 -0400 | [diff] [blame] | 469 | if args.ui: |
| 470 | # Needs to happen after nodejs is installed above. |
| 471 | InstallNodeModules() |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 472 | |
Eric Seckler | 6e828f3 | 2019-01-02 11:10:56 +0000 | [diff] [blame] | 473 | if deps_updated: |
| 474 | # Stale binary files may be compiled against old sysroot headers that aren't |
| 475 | # tracked by gn. |
| 476 | logging.warn('Remember to run "gn clean <output_directory>" ' + |
| 477 | 'to avoid stale binary files.') |
| 478 | |
Primiano Tucci | ae2879e | 2017-09-27 11:02:09 +0900 | [diff] [blame] | 479 | if __name__ == '__main__': |
| 480 | logging.basicConfig(level=logging.INFO) |
| 481 | sys.exit(Main()) |