Skip to content

Commit

Permalink
Bazel: rename workspace to codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
redsun82 committed Apr 12, 2022
1 parent 03ebf8b commit 141ba2e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Please notice that any bazel targets and definitions in this repository are currently experimental
# and for internal use only.

workspace(name = "ql")
workspace(name = "codeql")

load("//misc/bazel:workspace.bzl", "ql_workspace")
load("//misc/bazel:workspace.bzl", "codeql_workspace")

ql_workspace()
codeql_workspace()

load("//misc/bazel:workspace_deps.bzl", "ql_workspace_deps")
load("//misc/bazel:workspace_deps.bzl", "codeql_workspace_deps")

ql_workspace_deps()
codeql_workspace_deps()
2 changes: 1 addition & 1 deletion misc/bazel/workspace.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")

def ql_workspace():
def codeql_workspace():
maybe(
repo_rule = http_archive,
name = "rules_pkg",
Expand Down
2 changes: 1 addition & 1 deletion misc/bazel/workspace_deps.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")

def ql_workspace_deps():
def codeql_workspace_deps():
rules_pkg_dependencies()

0 comments on commit 141ba2e

Please sign in to comment.