load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "project", srcs = ["project.go"], importpath = "edge-infra.dev/pkg/lib/gcp/project", visibility = ["//visibility:public"], deps = [ "@org_golang_google_api//cloudbilling/v1:cloudbilling", "@org_golang_google_api//cloudresourcemanager/v1:cloudresourcemanager", ], ) go_test( name = "project_test", srcs = [ "integration_test.go", "project_test.go", ], data = ["//test:config_json"], embed = [":project"], visibility = ["//visibility:public"], deps = [ "//test/framework", "//test/framework/gcp", "//test/framework/integration", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//suite", "@org_golang_google_api//cloudbilling/v1:cloudbilling", "@org_golang_google_api//cloudresourcemanager/v1:cloudresourcemanager", ], )