| /* Copyright 2023 The Bazel Authors. All rights reserved. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| package visibility |
| |
| import ( |
| "github.com/bazelbuild/bazel-gazelle/config" |
| "github.com/bazelbuild/bazel-gazelle/label" |
| "github.com/bazelbuild/bazel-gazelle/repo" |
| "github.com/bazelbuild/bazel-gazelle/resolve" |
| "github.com/bazelbuild/bazel-gazelle/rule" |
| ) |
| |
| const ( |
| _extName = "visibility_extension" |
| ) |
| |
| // Name returns the extension name. |
| func (*visibilityExtension) Name() string { |
| return _extName |
| } |
| |
| // Imports noops because no imports are needed to leverage this functionality. |
| func (*visibilityExtension) Imports(c *config.Config, r *rule.Rule, f *rule.File) []resolve.ImportSpec { |
| return nil |
| } |
| |
| // Embeds noops because we are not a traditional rule, and cannot be embedded. |
| func (*visibilityExtension) Embeds(r *rule.Rule, from label.Label) []label.Label { |
| return nil |
| } |
| |
| // Resolve noops because we don't have deps=[] to resolve. |
| func (*visibilityExtension) Resolve(c *config.Config, ix *resolve.RuleIndex, rc *repo.RemoteCache, r *rule.Rule, imports interface{}, from label.Label) { |
| } |