blob: f60ae6a4ec8dbb39a5c04fa409c53df1e36d49cf [file] [log] [blame]
Ryan Prichard80e40f02019-10-31 19:54:46 -07001// ========================================================
2// linker_wrapper - Linux Bionic (on the host)
3// ========================================================
Colin Cross97f0aef2016-07-14 16:05:46 -07004
Dan Willemsen7ccc50d2017-09-18 21:28:14 -07005// This is used for bionic on (host) Linux to bootstrap our linker embedded into
6// a binary.
7//
8// Host bionic binaries do not have a PT_INTERP section, instead this gets
9// embedded as the entry point, and the linker is embedded as ELF sections in
10// each binary. There's a linker script that sets all of that up (generated by
11// extract_linker), and defines the extern symbols used in this file.
Bob Badouraa7d8352021-02-19 13:06:22 -080012package {
13 default_applicable_licenses: ["bionic_linker_license"],
14}
15
16license {
17 name: "bionic_linker_license",
18 visibility: [":__subpackages__"],
19 license_kinds: [
20 "SPDX-license-identifier-BSD",
21 ],
22 license_text: [
23 "NOTICE",
24 ],
25}
26
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070027cc_object {
28 name: "linker_wrapper",
29 host_supported: true,
30 device_supported: false,
31 target: {
Elliott Hughesd50a1de2018-02-05 17:30:57 -080032 linux_bionic: {
33 enabled: true,
34 },
35 linux_glibc: {
36 enabled: false,
37 },
38 darwin: {
39 enabled: false,
40 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070041 },
42
43 cflags: [
44 "-fno-stack-protector",
45 "-Wstrict-overflow=5",
46 "-fvisibility=hidden",
47 "-Wall",
48 "-Wextra",
49 "-Wno-unused",
50 "-Werror",
51 ],
52
53 srcs: [
54 "linker_wrapper.cpp",
55 ],
56 arch: {
Jiyong Park3b47d602020-09-18 16:15:53 +090057 arm64: {
58 srcs: ["arch/arm64/begin.S"],
59 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070060 x86_64: {
61 srcs: ["arch/x86_64/begin.S"],
62 },
63 },
64
65 prefix_symbols: "__dlwrap_",
66
Martin Stjernholm82d84bc2020-04-06 20:32:09 +010067 header_libs: ["libc_headers"],
68
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070069 // We need to access Bionic private headers in the linker.
70 include_dirs: ["bionic/libc"],
Jingwen Chenc5794782021-03-10 03:24:48 -050071
72 // b/182338959
73 bazel_module: { bp2build_available: false },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070074}
75
Ryan Prichard80e40f02019-10-31 19:54:46 -070076// ========================================================
77// linker default configuration
78// ========================================================
79
80// Configuration for the linker binary and any of its static libraries.
81cc_defaults {
82 name: "linker_defaults",
Christopher R. Palmerfbc2cc92017-04-08 22:40:01 +020083 defaults: [
84 "shim_libs_defaults",
85 ],
Ryan Prichard80e40f02019-10-31 19:54:46 -070086 arch: {
87 arm: {
88 cflags: ["-D__work_around_b_24465209__"],
89 },
90 x86: {
91 cflags: ["-D__work_around_b_24465209__"],
92 },
93 },
94
95 cflags: [
96 "-fno-stack-protector",
97 "-Wstrict-overflow=5",
98 "-fvisibility=hidden",
99 "-Wall",
100 "-Wextra",
101 "-Wunused",
102 "-Werror",
103 ],
104
105 // TODO: split out the asflags.
106 asflags: [
107 "-fno-stack-protector",
108 "-Wstrict-overflow=5",
109 "-fvisibility=hidden",
110 "-Wall",
111 "-Wextra",
112 "-Wunused",
113 "-Werror",
114 ],
115
116 product_variables: {
117 debuggable: {
118 cppflags: ["-DUSE_LD_CONFIG_FILE"],
119 },
120 },
121
122 cppflags: ["-Wold-style-cast"],
123
124 static_libs: [
125 "libziparchive",
126 "libbase",
127 "libz",
128
129 "libasync_safe",
130
131 "liblog",
132 ],
133
134 // We need to access Bionic private headers in the linker.
135 include_dirs: ["bionic/libc"],
136}
137
138// ========================================================
139// linker components
140// ========================================================
141
142// Enable a module on all targets the linker runs on (ordinary Android targets, Linux Bionic, and
143// native bridge implementations).
144cc_defaults {
145 name: "linker_all_targets",
146 defaults: ["linux_bionic_supported"],
147 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700148 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700149 native_bridge_supported: true,
150}
151
152cc_library_static {
Ryan Prichard249757b2019-11-01 17:18:28 -0700153 name: "liblinker_main",
154 defaults: ["linker_defaults", "linker_all_targets"],
155 srcs: ["linker_main.cpp"],
156
157 // Ensure that the compiler won't insert string function calls before ifuncs are resolved.
158 cflags: ["-ffreestanding"],
159}
160
161cc_library_static {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700162 name: "liblinker_malloc",
163 defaults: ["linker_defaults", "linker_all_targets"],
164 srcs: ["linker_memory.cpp"],
165}
166
167cc_library_static {
168 name: "liblinker_debuggerd_stub",
169 defaults: ["linker_defaults", "linker_all_targets"],
170 srcs: ["linker_debuggerd_stub.cpp"],
171}
172
173// ========================================================
174// template for the linker binary
175// ========================================================
176
dimitryb8b3a762018-09-25 12:31:11 +0200177filegroup {
178 name: "linker_sources",
Colin Cross97f0aef2016-07-14 16:05:46 -0700179 srcs: [
180 "dlfcn.cpp",
181 "linker.cpp",
182 "linker_block_allocator.cpp",
Dimitry Ivanov769b33f2016-07-21 11:33:40 -0700183 "linker_dlwarning.cpp",
Evgenii Stepanov0a3637d2016-07-06 13:20:59 -0700184 "linker_cfi.cpp",
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800185 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800186 "linker_debug.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700187 "linker_gdb_support.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700188 "linker_globals.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700189 "linker_libc_support.c",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800190 "linker_libcxx_support.cpp",
Dimitry Ivanovb943f302016-08-03 16:00:10 -0700191 "linker_namespaces.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700192 "linker_logger.cpp",
193 "linker_mapped_file_fragment.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100194 "linker_note_gnu_property.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700195 "linker_phdr.cpp",
Ryan Prichard339ecef2020-01-02 16:36:06 -0800196 "linker_relocate.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700197 "linker_sdk_versions.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700198 "linker_soinfo.cpp",
Collin Fijalkovich47d27aa2021-03-24 10:17:39 -0700199 "linker_transparent_hugepage_support.cpp",
Ryan Prichard45d13492019-01-03 02:51:30 -0800200 "linker_tls.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700201 "linker_utils.cpp",
202 "rt.cpp",
203 ],
dimitryb8b3a762018-09-25 12:31:11 +0200204}
Colin Cross97f0aef2016-07-14 16:05:46 -0700205
dimitryb8b3a762018-09-25 12:31:11 +0200206filegroup {
207 name: "linker_sources_arm",
208 srcs: [
209 "arch/arm/begin.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800210 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200211 ],
212}
213
214filegroup {
215 name: "linker_sources_arm64",
216 srcs: [
217 "arch/arm64/begin.S",
Ryan Prichardffaae702019-01-23 17:47:10 -0800218 "arch/arm64/tlsdesc_resolver.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800219 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200220 ],
221}
222
223filegroup {
224 name: "linker_sources_x86",
225 srcs: [
226 "arch/x86/begin.S",
227 ],
228}
229
230filegroup {
231 name: "linker_sources_x86_64",
232 srcs: [
233 "arch/x86_64/begin.S",
234 ],
235}
236
dimitryb8b3a762018-09-25 12:31:11 +0200237cc_defaults {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700238 name: "linker_version_script_overlay",
239 arch: {
240 arm: { version_script: "linker.arm.map" },
241 arm64: { version_script: "linker.generic.map" },
242 x86: { version_script: "linker.generic.map" },
243 x86_64: { version_script: "linker.generic.map" },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700244 },
245}
246
247// A template for the linker binary. May be inherited by native bridge implementations.
248cc_defaults {
249 name: "linker_bin_template",
250 defaults: ["linker_defaults"],
251
252 srcs: [":linker_sources"],
253
Colin Cross97f0aef2016-07-14 16:05:46 -0700254 arch: {
255 arm: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700256 srcs: [":linker_sources_arm"],
Ryan Prichard80e40f02019-10-31 19:54:46 -0700257 },
258 arm64: {
259 srcs: [":linker_sources_arm64"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700260 },
261 x86: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700262 srcs: [":linker_sources_x86"],
263 },
264 x86_64: {
265 srcs: [":linker_sources_x86_64"],
266 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700267 },
268
Ryan Prichard80e40f02019-10-31 19:54:46 -0700269 // -shared is used to overwrite the -Bstatic and -static flags triggered by enabling
270 // static_executable. This dynamic linker is actually a shared object linked with static
271 // libraries.
Colin Cross97f0aef2016-07-14 16:05:46 -0700272 ldflags: [
273 "-shared",
274 "-Wl,-Bsymbolic",
275 "-Wl,--exclude-libs,ALL",
dimitry8e8c2c02018-01-04 12:08:32 +0100276 "-Wl,-soname,ld-android.so",
Colin Cross97f0aef2016-07-14 16:05:46 -0700277 ],
278
Dimitry Ivanovfc0d4802016-12-06 11:10:09 -0800279 // we are going to link libc++_static manually because
280 // when stl is not set to "none" build system adds libdl
281 // to the list of static libraries which needs to be
282 // avoided in the case of building loader.
283 stl: "none",
284
Colin Cross97f0aef2016-07-14 16:05:46 -0700285 // we don't want crtbegin.o (because we have begin.o), so unset it
286 // just for this module
287 nocrt: true,
288
dimitryb8b3a762018-09-25 12:31:11 +0200289 static_executable: true,
290
291 // Leave the symbols in the shared library so that stack unwinders can produce
292 // meaningful name resolution.
293 strip: {
294 keep_symbols: true,
295 },
296
297 // Insert an extra objcopy step to add prefix to symbols. This is needed to prevent gdb
298 // looking up symbols in the linker by mistake.
299 prefix_symbols: "__dl_",
300
301 sanitize: {
302 hwaddress: false,
303 },
dimitryb8b3a762018-09-25 12:31:11 +0200304
Colin Cross97f0aef2016-07-14 16:05:46 -0700305 static_libs: [
Ryan Prichard249757b2019-11-01 17:18:28 -0700306 "liblinker_main",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700307 "liblinker_malloc",
308
309 "libc++_static",
Colin Cross97f0aef2016-07-14 16:05:46 -0700310 "libc_nomalloc",
Ryan Prichard249757b2019-11-01 17:18:28 -0700311 "libc_dynamic_dispatch",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800312 "libm",
Ryan Prichardcdf71752020-12-16 03:37:22 -0800313 "libunwind",
Colin Cross97f0aef2016-07-14 16:05:46 -0700314 ],
Colin Cross97f0aef2016-07-14 16:05:46 -0700315
Ryan Prichardd9a41152019-10-14 16:58:53 -0700316 // Ensure that if the linker needs __gnu_Unwind_Find_exidx, then the linker will have a
317 // definition of the symbol. The linker links against libgcc.a, whose arm32 unwinder has a weak
318 // reference to __gnu_Unwind_Find_exidx, which isn't sufficient to pull in the strong definition
319 // of __gnu_Unwind_Find_exidx from libc. An unresolved weak reference would create a
320 // non-relative dynamic relocation in the linker binary, which complicates linker startup.
321 //
322 // This line should be unnecessary because the linker's dependency on libunwind_llvm.a should
323 // override libgcc.a, but this line provides a simpler guarantee. It can be removed once the
324 // linker stops linking against libgcc.a's arm32 unwinder.
325 whole_static_libs: ["libc_unwind_static"],
326
Ryan Prichard80e40f02019-10-31 19:54:46 -0700327 system_shared_libs: [],
328
329 // Opt out of native_coverage when opting out of system_shared_libs
330 native_coverage: false,
331}
332
333// ========================================================
334// linker[_asan][64] binary
335// ========================================================
336
337cc_binary {
Colin Cross97f0aef2016-07-14 16:05:46 -0700338 name: "linker",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700339 defaults: [
340 "linker_bin_template",
341 "linux_bionic_supported",
342 "linker_version_script_overlay",
343 ],
344
Victor Khimenkod15229d2020-05-14 22:14:45 +0200345 srcs: [
346 "linker_translate_path.cpp",
347 ],
348
Colin Cross10fffb42016-12-08 09:57:35 -0800349 symlinks: ["linker_asan"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700350 multilib: {
Colin Cross97f0aef2016-07-14 16:05:46 -0700351 lib64: {
352 suffix: "64",
Colin Cross10fffb42016-12-08 09:57:35 -0800353 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700354 },
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800355
Ryan Prichard80e40f02019-10-31 19:54:46 -0700356 compile_multilib: "both",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700357
358 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700359 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700360 apex_available: [
361 "//apex_available:platform",
362 "com.android.runtime",
363 ],
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800364
Colin Cross97f0aef2016-07-14 16:05:46 -0700365 target: {
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800366 android: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700367 srcs: [
368 "linker_debuggerd_android.cpp",
369 ],
Dan Albert4ea19212019-07-23 13:31:14 -0700370 static_libs: [
371 "libc++demangle",
372 "libdebuggerd_handler_fallback",
373 ],
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800374 },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700375 linux_bionic: {
376 static_libs: [
377 "liblinker_debuggerd_stub",
378 ],
Yi Kong6f6daaa2020-12-10 01:27:44 +0800379 },
380 android_arm64: {
381 pgo: {
382 profile_file: "bionic/linker_arm_arm64.profdata",
383 },
384 },
385 android_arm: {
386 pgo: {
387 profile_file: "bionic/linker_arm_arm64.profdata",
388 },
389 },
390 android_x86_64: {
391 pgo: {
392 profile_file: "bionic/linker_x86_x86_64.profdata",
393 },
394 },
395 android_x86: {
396 pgo: {
397 profile_file: "bionic/linker_x86_x86_64.profdata",
398 },
399 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700400 },
Yi Konga7e363f2020-10-01 04:10:01 +0800401
402 lto: {
403 never: true,
404 },
Yi Kong6f6daaa2020-12-10 01:27:44 +0800405 pgo: {
406 sampling: true,
407 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700408}
dimitry11da1dc2018-01-05 13:35:43 +0100409
Ryan Prichard80e40f02019-10-31 19:54:46 -0700410// ========================================================
411// assorted modules
412// ========================================================
413
Elliott Hughes90f96b92019-05-09 15:56:39 -0700414sh_binary {
415 name: "ldd",
Rupert Shuttlewortha7e29a82021-02-18 13:35:22 +0000416 src: "ldd.sh",
Rupert Shuttleworth344b8da2021-02-09 11:35:04 +0000417 bazel_module: { bp2build_available: true },
Elliott Hughes90f96b92019-05-09 15:56:39 -0700418}
419
Collin Fijalkovichc9521e02021-04-29 11:31:50 -0700420// Used to generate binaries that can be backed by transparent hugepages.
421cc_defaults {
422 name: "linker_hugepage_aligned",
423 arch: {
424 arm64: {
425 ldflags: ["-z max-page-size=0x200000"],
426 },
427 x86_64: {
428 ldflags: ["-z max-page-size=0x200000"],
429 },
430 },
431}
432
dimitry11da1dc2018-01-05 13:35:43 +0100433cc_library {
434 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from
435 // libgcc.a are made static to ld-android.so. This in turn ensures that libraries that
436 // a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so
437 // to provide those symbols, but will instead pull them from libgcc.a. Specifically,
438 // we use this property to make sure libc.so has its own copy of the code from
439 // libgcc.a it uses.
440 //
441 // DO NOT REMOVE --exclude-libs!
442
Yi Kong7786a342018-08-31 19:01:56 -0700443 ldflags: [
444 "-Wl,--exclude-libs=libgcc.a",
Yi Kong7ac2afb2019-05-06 16:23:10 -0700445 "-Wl,--exclude-libs=libgcc_stripped.a",
Yi Kong7786a342018-08-31 19:01:56 -0700446 "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
447 "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
Ryan Prichardef147872021-01-28 14:06:52 -0800448 "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
Yi Kong7786a342018-08-31 19:01:56 -0700449 "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
450 ],
dimitry11da1dc2018-01-05 13:35:43 +0100451
452 // for x86, exclude libgcc_eh.a for the same reasons as above
453 arch: {
454 x86: {
455 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
456 },
457 x86_64: {
458 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
459 },
460 },
dimitry581723e2018-01-05 14:31:44 +0100461
462 srcs: ["ld_android.cpp"],
dimitry11da1dc2018-01-05 13:35:43 +0100463 cflags: [
464 "-Wall",
465 "-Wextra",
466 "-Wunused",
467 "-Werror",
468 ],
469 stl: "none",
470
471 name: "ld-android",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700472 defaults: ["linux_bionic_supported", "linker_version_script_overlay"],
Yifan Hong5a39cee2020-01-21 16:43:56 -0800473 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700474 vendor_ramdisk_available: true,
Jiyong Park5603c6e2018-04-27 21:53:11 +0900475 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +0200476 native_bridge_supported: true,
dimitry11da1dc2018-01-05 13:35:43 +0100477
Ryan Prichard470b6662018-03-27 22:10:55 -0700478 nocrt: true,
dimitry11da1dc2018-01-05 13:35:43 +0100479 system_shared_libs: [],
Martin Stjernholm82d84bc2020-04-06 20:32:09 +0100480 header_libs: ["libc_headers"],
dimitry11da1dc2018-01-05 13:35:43 +0100481
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800482 // Opt out of native_coverage when opting out of system_shared_libs
483 native_coverage: false,
484
dimitry11da1dc2018-01-05 13:35:43 +0100485 sanitize: {
486 never: true,
487 },
Jiyong Parke87e0dc2019-10-02 17:09:33 +0900488
489 apex_available: [
490 "//apex_available:platform",
491 "com.android.runtime",
492 ],
Yi Kong15a05a72020-09-22 00:56:13 +0800493
494 lto: {
495 never: true,
496 },
dimitry11da1dc2018-01-05 13:35:43 +0100497}
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800498
499cc_test {
500 name: "linker-unit-tests",
501
502 cflags: [
503 "-g",
504 "-Wall",
505 "-Wextra",
506 "-Wunused",
507 "-Werror",
508 ],
509
510 // We need to access Bionic private headers in the linker.
511 include_dirs: ["bionic/libc"],
512
513 srcs: [
514 // Tests.
515 "linker_block_allocator_test.cpp",
516 "linker_config_test.cpp",
517 "linked_list_test.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100518 "linker_note_gnu_property_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800519 "linker_sleb128_test.cpp",
520 "linker_utils_test.cpp",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800521 "linker_gnu_hash_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800522
523 // Parts of the linker that we're testing.
524 "linker_block_allocator.cpp",
525 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800526 "linker_debug.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100527 "linker_note_gnu_property.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800528 "linker_test_globals.cpp",
529 "linker_utils.cpp",
530 ],
531
532 static_libs: [
533 "libasync_safe",
534 "libbase",
535 "liblog",
536 ],
Ryan Prichard129f7a12019-12-23 16:45:47 -0800537
538 arch: {
539 arm: {
540 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
541 },
542 arm64: {
543 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
544 },
545 },
546}
547
548cc_benchmark {
549 name: "linker-benchmarks",
550
551 srcs: [
552 "linker_gnu_hash_benchmark.cpp",
553 ],
554
555 arch: {
556 arm: {
557 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
558 },
559 arm64: {
560 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
561 },
562 },
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800563}