Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 1 | # This file is used to manage the dependencies of the Open Screen repo. It is |
| 2 | # used by gclient to determine what version of each dependency to check out. |
| 3 | # |
| 4 | # For more information, please refer to the official documentation: |
| 5 | # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
| 6 | # |
| 7 | # When adding a new dependency, please update the top-level .gitignore file |
| 8 | # to list the dependency's destination directory. |
| 9 | |
btolsch | b1d095b | 2019-02-28 10:14:26 -0800 | [diff] [blame] | 10 | use_relative_paths = True |
| 11 | |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 12 | vars = { |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 13 | 'boringssl_git': 'https://boringssl.googlesource.com', |
| 14 | 'chromium_git': 'https://chromium.googlesource.com', |
mark a. foltz | 3eca605 | 2021-07-13 15:17:39 -0700 | [diff] [blame] | 15 | 'quiche_git': 'https://quiche.googlesource.com', |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 16 | |
Jordan Bayles | 3e820a5 | 2020-04-30 00:57:14 -0700 | [diff] [blame] | 17 | # NOTE: we should only reference GitHub directly for dependencies toggled |
| 18 | # with the "not build_with_chromium" condition. |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 19 | 'github': 'https://github.com', |
btolsch | b1d095b | 2019-02-28 10:14:26 -0800 | [diff] [blame] | 20 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 21 | # NOTE: Strangely enough, this will be overridden by any _parent_ DEPS, so |
| 22 | # in Chromium it will correctly be True. |
| 23 | 'build_with_chromium': False, |
Max Yakimakha | 4132b4c | 2019-04-12 15:09:44 -0700 | [diff] [blame] | 24 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 25 | 'checkout_chromium_quic_boringssl': False, |
btolsch | 297e9f7 | 2020-02-06 00:04:01 -0800 | [diff] [blame] | 26 | |
| 27 | # Needed to download additional clang binaries for processing coverage data |
| 28 | # (from binaries with GN arg `use_coverage=true`). |
Ryan Keane | 3c39611 | 2020-04-28 14:24:43 -0700 | [diff] [blame] | 29 | # |
| 30 | # TODO(issuetracker.google.com/155195126): Change this to False and update |
Jordan Bayles | 82a5b2d | 2020-11-09 11:00:51 -0800 | [diff] [blame] | 31 | # buildbot to call tools/download-clang-update-script.py instead. |
Ryan Keane | 3c39611 | 2020-04-28 14:24:43 -0700 | [diff] [blame] | 32 | 'checkout_clang_coverage_tools': True, |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 33 | |
| 34 | # GN CIPD package version. |
| 35 | 'gn_version': 'git_revision:39a87c0b36310bdf06b692c098f199a0d97fc810', |
mark a. foltz | dec3ae5 | 2021-06-01 15:54:50 -0700 | [diff] [blame] | 36 | 'clang_format_revision': '99803d74e35962f63a775f29477882afd4d57d94', |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | deps = { |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 40 | # NOTE: This commit hash here references a repository/branch that is a mirror |
| 41 | # of the commits to the buildtools directory in the Chromium repository. This |
| 42 | # should be regularly updated with the tip of the MIRRORED master branch, |
| 43 | # found here: |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 44 | # https://chromium.googlesource.com/chromium/src/buildtools/+/refs/heads/main. |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 45 | 'buildtools': { |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 46 | 'url': Var('chromium_git') + '/chromium/src/buildtools' + |
| 47 | '@' + 'fba2905150c974240f14aa5334c3e5c93f873032', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 48 | 'condition': 'not build_with_chromium', |
| 49 | }, |
mark a. foltz | dec3ae5 | 2021-06-01 15:54:50 -0700 | [diff] [blame] | 50 | 'buildtools/clang_format/script': { |
| 51 | 'url': Var('chromium_git') + |
| 52 | '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git' + |
| 53 | '@' + Var('clang_format_revision'), |
| 54 | 'condition': 'not build_with_chromium', |
| 55 | }, |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 56 | 'buildtools/linux64': { |
| 57 | 'packages': [ |
| 58 | { |
| 59 | 'package': 'gn/gn/linux-amd64', |
| 60 | 'version': Var('gn_version'), |
| 61 | } |
| 62 | ], |
| 63 | 'dep_type': 'cipd', |
mark a. foltz | dec3ae5 | 2021-06-01 15:54:50 -0700 | [diff] [blame] | 64 | 'condition': 'host_os == "linux" and not build_with_chromium', |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 65 | }, |
| 66 | 'buildtools/mac': { |
| 67 | 'packages': [ |
| 68 | { |
| 69 | 'package': 'gn/gn/mac-${{arch}}', |
| 70 | 'version': Var('gn_version'), |
| 71 | } |
| 72 | ], |
| 73 | 'dep_type': 'cipd', |
mark a. foltz | dec3ae5 | 2021-06-01 15:54:50 -0700 | [diff] [blame] | 74 | 'condition': 'host_os == "mac" and not build_with_chromium', |
Jordan Bayles | 6e279a0 | 2021-05-27 14:24:12 -0700 | [diff] [blame] | 75 | }, |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 76 | 'third_party/protobuf/src': { |
| 77 | 'url': Var('chromium_git') + |
| 78 | '/external/github.com/protocolbuffers/protobuf.git' + |
Jordan Bayles | f3b911c | 2021-06-22 11:28:50 -0700 | [diff] [blame] | 79 | '@' + '909a0f36a10075c4b4bc70fdee2c7e32dd612a72', # version 3.17.3 |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 80 | 'condition': 'not build_with_chromium', |
| 81 | }, |
Jordan Bayles | fa947f0 | 2019-06-05 12:52:56 -0700 | [diff] [blame] | 82 | |
John Williams | 8cce349 | 2020-05-21 15:13:52 -0700 | [diff] [blame] | 83 | 'third_party/libprotobuf-mutator/src': { |
| 84 | 'url': Var('chromium_git') + |
Jordan Bayles | 842767b | 2020-11-23 14:50:17 -0800 | [diff] [blame] | 85 | '/external/github.com/google/libprotobuf-mutator.git' + |
Jordan Bayles | f3b911c | 2021-06-22 11:28:50 -0700 | [diff] [blame] | 86 | '@' + '8942a9ba43d8bb196230c321d46d6a137957a719', |
John Williams | 8cce349 | 2020-05-21 15:13:52 -0700 | [diff] [blame] | 87 | 'condition': 'not build_with_chromium', |
| 88 | }, |
| 89 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 90 | 'third_party/zlib/src': { |
| 91 | 'url': Var('github') + |
| 92 | '/madler/zlib.git' + |
| 93 | '@' + 'cacf7f1d4e3d44d871b605da3b647f07d718623f', # version 1.2.11 |
| 94 | 'condition': 'not build_with_chromium', |
| 95 | }, |
btolsch | 22fa184 | 2019-07-16 21:40:28 -0700 | [diff] [blame] | 96 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 97 | 'third_party/jsoncpp/src': { |
| 98 | 'url': Var('chromium_git') + |
| 99 | '/external/github.com/open-source-parsers/jsoncpp.git' + |
Jordan Bayles | 0f57da1 | 2020-09-25 19:33:36 -0700 | [diff] [blame] | 100 | '@' + '9059f5cad030ba11d37818847443a53918c327b1', # version 1.9.4 |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 101 | 'condition': 'not build_with_chromium', |
| 102 | }, |
btolsch | 22fa184 | 2019-07-16 21:40:28 -0700 | [diff] [blame] | 103 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 104 | 'third_party/googletest/src': { |
| 105 | 'url': Var('chromium_git') + |
| 106 | '/external/github.com/google/googletest.git' + |
Jordan Bayles | 842767b | 2020-11-23 14:50:17 -0800 | [diff] [blame] | 107 | '@' + '36d8eb532022d3b543bf55aa8ffa01b6e9f03490', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 108 | 'condition': 'not build_with_chromium', |
| 109 | }, |
Jordan Bayles | fa947f0 | 2019-06-05 12:52:56 -0700 | [diff] [blame] | 110 | |
Jordan Bayles | 74021fe | 2020-04-29 17:00:07 -0700 | [diff] [blame] | 111 | # Note about updating BoringSSL: after changing this hash, run the update |
| 112 | # script in BoringSSL's util folder for generating build files from the |
| 113 | # <openscreen src-dir>/third_party/boringssl directory: |
| 114 | # python ./src/util/generate_build_files.py gn |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 115 | 'third_party/boringssl/src': { |
| 116 | 'url' : Var('boringssl_git') + '/boringssl.git' + |
David Benjamin | 940f00b | 2021-03-04 15:15:20 -0500 | [diff] [blame] | 117 | '@' + 'f6bd54efbcafcf4625ce99b5f702dc4850b0ca50', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 118 | 'condition': 'not build_with_chromium', |
| 119 | }, |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 120 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 121 | 'third_party/chromium_quic/src': { |
| 122 | 'url': Var('chromium_git') + '/openscreen/quic.git' + |
Jordan Bayles | 8a7173a | 2021-06-29 03:59:26 -0700 | [diff] [blame] | 123 | '@' + '79eec3fc28f5c4e1d06c6146825e31def6e3b793', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 124 | 'condition': 'not build_with_chromium', |
| 125 | }, |
Max Yakimakha | 4132b4c | 2019-04-12 15:09:44 -0700 | [diff] [blame] | 126 | |
mark a. foltz | 3eca605 | 2021-07-13 15:17:39 -0700 | [diff] [blame] | 127 | # To roll forward, use quiche_revision from chromium/src/DEPS. |
| 128 | 'third_party/quiche/src': { |
| 129 | 'url': Var('quiche_git') + '/quiche.git' + |
| 130 | '@' + '51f584db29001036c20db3f72f09b00b875ae625', |
| 131 | 'condition': 'not build_with_chromium', |
| 132 | }, |
| 133 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 134 | 'third_party/tinycbor/src': |
| 135 | Var('chromium_git') + '/external/github.com/intel/tinycbor.git' + |
Jordan Bayles | 842767b | 2020-11-23 14:50:17 -0800 | [diff] [blame] | 136 | '@' + 'fc42a049853b802e45f49588f8148fc29d7b4d9c', |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 137 | |
mark a. foltz | 9279e57 | 2020-05-05 11:25:45 -0700 | [diff] [blame] | 138 | # Abseil recommends living at head. Chromium takes an Abseil snapshot |
Jordan Bayles | 842767b | 2020-11-23 14:50:17 -0800 | [diff] [blame] | 139 | # irregularly, every 1-2 months. It's OK for us to come out slightly ahead |
| 140 | # of Chrome's copy here. |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 141 | 'third_party/abseil/src': { |
| 142 | 'url': Var('chromium_git') + |
Jordan Bayles | 842767b | 2020-11-23 14:50:17 -0800 | [diff] [blame] | 143 | '/external/github.com/abseil/abseil-cpp.git' + '@' + |
| 144 | 'e19260fd7dbef881492fd73891e0be5bd4a09b95', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 145 | 'condition': 'not build_with_chromium', |
| 146 | }, |
Jordan Bayles | 74021fe | 2020-04-29 17:00:07 -0700 | [diff] [blame] | 147 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 148 | 'third_party/libfuzzer/src': { |
| 149 | 'url': Var('chromium_git') + |
| 150 | '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + |
| 151 | '@' + 'debe7d2d1982e540fbd6bd78604bf001753f9e74', |
| 152 | 'condition': 'not build_with_chromium', |
| 153 | }, |
Jordan Bayles | 12b95e7 | 2020-12-03 09:26:47 -0800 | [diff] [blame] | 154 | |
Jordan Bayles | 79c6ea2 | 2020-12-10 11:12:44 -0800 | [diff] [blame] | 155 | 'third_party/modp_b64': { |
| 156 | 'url': Var('chromium_git') + '/chromium/src/third_party/modp_b64' |
mark a. foltz | f7b87d2 | 2021-10-14 15:34:44 -0700 | [diff] [blame] | 157 | '@' + 'ca6144fbeb44934d474cc8030a64de21947e2550', |
Jordan Bayles | 79c6ea2 | 2020-12-10 11:12:44 -0800 | [diff] [blame] | 158 | 'condition': 'not build_with_chromium', |
| 159 | }, |
| 160 | |
Jordan Bayles | 12b95e7 | 2020-12-03 09:26:47 -0800 | [diff] [blame] | 161 | 'third_party/valijson/src': { |
| 162 | 'url': Var('github') + '/tristanpenman/valijson.git' + |
| 163 | '@' + 'cf648930313655b19dc07ebae2f9c3fc37966a33', # Tip-of-tree |
Jordan Bayles | 79c6ea2 | 2020-12-10 11:12:44 -0800 | [diff] [blame] | 164 | 'condition': 'not build_with_chromium' |
Jordan Bayles | 12b95e7 | 2020-12-03 09:26:47 -0800 | [diff] [blame] | 165 | } |
Jordan Bayles | b5c9ece | 2019-02-22 15:16:44 -0800 | [diff] [blame] | 166 | } |
btolsch | b1d095b | 2019-02-28 10:14:26 -0800 | [diff] [blame] | 167 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 168 | hooks = [ |
| 169 | { |
| 170 | 'name': 'clang_update_script', |
| 171 | 'pattern': '.', |
| 172 | 'condition': 'not build_with_chromium', |
mark a. foltz | 3ea2102 | 2021-10-29 11:09:28 -0700 | [diff] [blame] | 173 | 'action': [ 'tools/download-clang-update-script.py', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 174 | '--output', 'tools/clang/scripts/update.py' ], |
| 175 | # NOTE: This file appears in .gitignore, as it is not a part of the |
| 176 | # openscreen repo. |
| 177 | }, |
Jordan Bayles | 82a5b2d | 2020-11-09 11:00:51 -0800 | [diff] [blame] | 178 | { |
| 179 | 'name': 'yajsv_update_script', |
| 180 | 'pattern': '.', |
| 181 | 'condition': 'not build_with_chromium', |
mark a. foltz | 3ea2102 | 2021-10-29 11:09:28 -0700 | [diff] [blame] | 182 | 'action': [ 'tools/download-yajsv.py' ], |
Jordan Bayles | 82a5b2d | 2020-11-09 11:00:51 -0800 | [diff] [blame] | 183 | }, |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 184 | { |
| 185 | 'name': 'update_clang', |
| 186 | 'pattern': '.', |
| 187 | 'condition': 'not build_with_chromium', |
Hans Wennborg | 6efb5b9 | 2021-10-29 10:51:38 +0200 | [diff] [blame] | 188 | 'action': [ 'python3', 'tools/clang/scripts/update.py' ], |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 189 | }, |
| 190 | { |
btolsch | 297e9f7 | 2020-02-06 00:04:01 -0800 | [diff] [blame] | 191 | 'name': 'clang_coverage_tools', |
| 192 | 'pattern': '.', |
| 193 | 'condition': 'not build_with_chromium and checkout_clang_coverage_tools', |
Hans Wennborg | 6efb5b9 | 2021-10-29 10:51:38 +0200 | [diff] [blame] | 194 | 'action': ['python3', 'tools/clang/scripts/update.py', |
btolsch | 297e9f7 | 2020-02-06 00:04:01 -0800 | [diff] [blame] | 195 | '--package=coverage_tools'], |
| 196 | }, |
| 197 | { |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 198 | 'name': 'clang_format_linux64', |
| 199 | 'pattern': '.', |
| 200 | 'action': [ 'download_from_google_storage.py', '--no_resume', '--no_auth', |
| 201 | '--bucket', 'chromium-clang-format', |
| 202 | '-s', 'buildtools/linux64/clang-format.sha1' ], |
| 203 | 'condition': 'host_os == "linux" and not build_with_chromium', |
| 204 | }, |
| 205 | { |
| 206 | 'name': 'clang_format_mac', |
| 207 | 'pattern': '.', |
| 208 | 'action': [ 'download_from_google_storage.py', '--no_resume', '--no_auth', |
| 209 | '--bucket', 'chromium-clang-format', |
| 210 | '-s', 'buildtools/mac/clang-format.sha1' ], |
| 211 | 'condition': 'host_os == "mac" and not build_with_chromium', |
| 212 | }, |
| 213 | ] |
| 214 | |
btolsch | b1d095b | 2019-02-28 10:14:26 -0800 | [diff] [blame] | 215 | recursedeps = [ |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 216 | 'third_party/chromium_quic/src', |
Jordan Bayles | 12b95e7 | 2020-12-03 09:26:47 -0800 | [diff] [blame] | 217 | 'cast', |
btolsch | b1d095b | 2019-02-28 10:14:26 -0800 | [diff] [blame] | 218 | ] |
btolsch | 9ba2371 | 2019-04-18 16:36:55 -0700 | [diff] [blame] | 219 | |
| 220 | include_rules = [ |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 221 | '+util', |
| 222 | '+platform/api', |
| 223 | '+platform/base', |
| 224 | '+platform/test', |
| 225 | '+testing/util', |
| 226 | '+third_party', |
btolsch | 9ba2371 | 2019-04-18 16:36:55 -0700 | [diff] [blame] | 227 | |
mark a. foltz | f9715c5 | 2021-07-20 17:00:33 -0700 | [diff] [blame] | 228 | # Inter-module dependencies must be through public APIs. |
| 229 | '-discovery', |
| 230 | '+discovery/common', |
| 231 | '+discovery/dnssd/public', |
| 232 | '+discovery/mdns/public', |
| 233 | '+discovery/public', |
| 234 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 235 | # Don't include abseil from the root so the path can change via include_dirs |
| 236 | # rules when in Chromium. |
| 237 | '-third_party/abseil', |
btolsch | 9ba2371 | 2019-04-18 16:36:55 -0700 | [diff] [blame] | 238 | |
mark a. foltz | 8c11e26 | 2020-07-22 14:29:37 -0700 | [diff] [blame] | 239 | # Abseil allowed headers. |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 240 | '+absl/algorithm/container.h', |
| 241 | '+absl/base/thread_annotations.h', |
| 242 | '+absl/hash/hash.h', |
Ryan Keane | 492f486 | 2020-06-10 10:03:39 -0700 | [diff] [blame] | 243 | '+absl/hash/hash_testing.h', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 244 | '+absl/strings/ascii.h', |
| 245 | '+absl/strings/match.h', |
| 246 | '+absl/strings/numbers.h', |
| 247 | '+absl/strings/str_cat.h', |
| 248 | '+absl/strings/str_join.h', |
Ryan Keane | 7ff4317 | 2020-01-14 14:16:27 -0800 | [diff] [blame] | 249 | '+absl/strings/str_replace.h', |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 250 | '+absl/strings/str_split.h', |
| 251 | '+absl/strings/string_view.h', |
| 252 | '+absl/strings/substitute.h', |
| 253 | '+absl/types/optional.h', |
| 254 | '+absl/types/span.h', |
| 255 | '+absl/types/variant.h', |
Jordan Bayles | 2d01f17 | 2019-06-07 11:11:50 -0700 | [diff] [blame] | 256 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 257 | # Similar to abseil, don't include boringssl using root path. Instead, |
| 258 | # explicitly allow 'openssl' where needed. |
| 259 | '-third_party/boringssl', |
btolsch | aaad6a5 | 2019-08-05 14:05:39 -0700 | [diff] [blame] | 260 | |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 261 | # Test framework includes. |
| 262 | "-third_party/googletest", |
| 263 | "+gtest", |
| 264 | "+gmock", |
btolsch | 9ba2371 | 2019-04-18 16:36:55 -0700 | [diff] [blame] | 265 | ] |
| 266 | |
| 267 | skip_child_includes = [ |
Yuri Wiitala | 50d8abc | 2020-01-09 18:36:09 -0800 | [diff] [blame] | 268 | 'third_party/chromium_quic', |
btolsch | 9ba2371 | 2019-04-18 16:36:55 -0700 | [diff] [blame] | 269 | ] |