xref: /aosp_15_r20/external/boringssl/src/util/gotools/gotools.go (revision 8fb009dc861624b67b6cdb62ea21f0f22d0c584b)
1// Copyright (c) 2024, Google Inc.
2//
3// Permission to use, copy, modify, and/or distribute this software for any
4// purpose with or without fee is hereby granted, provided that the above
5// copyright notice and this permission notice appear in all copies.
6//
7// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14
15//go:build tools
16
17package gotools
18
19// This file contains dependencies that should be carried in go.mod for the sake
20// of single-file Go scripts. However, those scripts are ignored by go mod tidy,
21// so we must redeclare them here to keep them from being deleted. See
22// https://github.com/golang/go/issues/25922#issuecomment-413898264
23
24import (
25	// Used by util/fetch_ech_config_list.go
26	_ "golang.org/x/net/dns/dnsmessage"
27)
28