111 lines
2.9 KiB
Python
111 lines
2.9 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"activity.go",
|
|
"activity_events.go",
|
|
"activity_notifications.go",
|
|
"activity_star.go",
|
|
"activity_watching.go",
|
|
"admin.go",
|
|
"admin_stats.go",
|
|
"apps.go",
|
|
"apps_installation.go",
|
|
"apps_marketplace.go",
|
|
"authorizations.go",
|
|
"checks.go",
|
|
"doc.go",
|
|
"event_types.go",
|
|
"gists.go",
|
|
"gists_comments.go",
|
|
"git.go",
|
|
"git_blobs.go",
|
|
"git_commits.go",
|
|
"git_refs.go",
|
|
"git_tags.go",
|
|
"git_trees.go",
|
|
"github.go",
|
|
"github-accessors.go",
|
|
"gitignore.go",
|
|
"issues.go",
|
|
"issues_assignees.go",
|
|
"issues_comments.go",
|
|
"issues_events.go",
|
|
"issues_labels.go",
|
|
"issues_milestones.go",
|
|
"issues_timeline.go",
|
|
"licenses.go",
|
|
"messages.go",
|
|
"migrations.go",
|
|
"migrations_source_import.go",
|
|
"migrations_user.go",
|
|
"misc.go",
|
|
"orgs.go",
|
|
"orgs_hooks.go",
|
|
"orgs_members.go",
|
|
"orgs_outside_collaborators.go",
|
|
"orgs_projects.go",
|
|
"orgs_users_blocking.go",
|
|
"projects.go",
|
|
"pulls.go",
|
|
"pulls_comments.go",
|
|
"pulls_reviewers.go",
|
|
"pulls_reviews.go",
|
|
"reactions.go",
|
|
"repos.go",
|
|
"repos_collaborators.go",
|
|
"repos_comments.go",
|
|
"repos_commits.go",
|
|
"repos_community_health.go",
|
|
"repos_contents.go",
|
|
"repos_deployments.go",
|
|
"repos_forks.go",
|
|
"repos_hooks.go",
|
|
"repos_invitations.go",
|
|
"repos_keys.go",
|
|
"repos_merging.go",
|
|
"repos_pages.go",
|
|
"repos_prereceive_hooks.go",
|
|
"repos_projects.go",
|
|
"repos_releases.go",
|
|
"repos_stats.go",
|
|
"repos_statuses.go",
|
|
"repos_traffic.go",
|
|
"search.go",
|
|
"strings.go",
|
|
"teams.go",
|
|
"teams_discussion_comments.go",
|
|
"teams_discussions.go",
|
|
"teams_members.go",
|
|
"timestamp.go",
|
|
"users.go",
|
|
"users_administration.go",
|
|
"users_blocking.go",
|
|
"users_emails.go",
|
|
"users_followers.go",
|
|
"users_gpg_keys.go",
|
|
"users_keys.go",
|
|
"without_appengine.go",
|
|
],
|
|
importmap = "github.com/jetstack/cert-manager/vendor/github.com/google/go-github/github",
|
|
importpath = "github.com/google/go-github/github",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/github.com/google/go-querystring/query:go_default_library"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|