mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
18 lines
388 B
Python
Generated
18 lines
388 B
Python
Generated
load("@rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "srcarchive",
|
|
srcs = [
|
|
"projectlayout.go",
|
|
"srcarchive.go",
|
|
],
|
|
importpath = "github.com/github/codeql-go/extractor/srcarchive",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "srcarchive_test",
|
|
srcs = ["projectlayout_test.go"],
|
|
embed = [":srcarchive"],
|
|
)
|