From 8b121c0666450f5ce790b56bf9bb672c79d8b925 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 21 Oct 2021 19:47:17 +0200 Subject: pkg/tools: add empty.go Add empty.go to unbreak bazel+glaze build. Otherwise the package does not have any files not excluded by build constraints. --- pkg/tools/empty.go | 6 ++++++ pkg/tools/tools.go | 1 + 2 files changed, 7 insertions(+) create mode 100644 pkg/tools/empty.go (limited to 'pkg') diff --git a/pkg/tools/empty.go b/pkg/tools/empty.go new file mode 100644 index 000000000..d5b3488ec --- /dev/null +++ b/pkg/tools/empty.go @@ -0,0 +1,6 @@ +// Copyright 2021 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package tools + +// Empty file to unbreak bazel+glaze build (tools.go is excluded by build constraints). diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go index 630a66907..da65663e1 100644 --- a/pkg/tools/tools.go +++ b/pkg/tools/tools.go @@ -1,6 +1,7 @@ // Copyright 2020 syzkaller project authors. All rights reserved. // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. +//go:build tools // +build tools // tools is not a normal package, it's only purpose is tools dependency management. -- cgit mrf-deployment