mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
27 lines
635 B
Python
Generated
27 lines
635 B
Python
Generated
# generated running `bazel run //go/gazelle`, do not edit
|
|
|
|
load("@rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "project",
|
|
srcs = ["project.go"],
|
|
importpath = "github.com/github/codeql-go/extractor/project",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//go/extractor/diagnostics",
|
|
"//go/extractor/toolchain",
|
|
"//go/extractor/util",
|
|
"@org_golang_x_mod//modfile",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "project_test",
|
|
srcs = ["project_test.go"],
|
|
embed = [":project"],
|
|
deps = [
|
|
"//go/extractor/util",
|
|
"@org_golang_x_mod//modfile",
|
|
],
|
|
)
|