Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ load("@bazel_skylib//lib:selects.bzl", "selects")
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
load("@bazel_skylib//rules:expand_template.bzl", "expand_template")
load("@build_bazel_apple_support//rules:apple_genrule.bzl", "apple_genrule")
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_import", "cc_library", "objc_library")
load("@rules_python//python:defs.bzl", "py_binary")
load("//:vars.bzl", "LLVM_VERSION_MAJOR", "LLVM_VERSION_MINOR", "LLVM_VERSION_PATCH", "LLVM_VERSION_SUFFIX", "PACKAGE_VERSION")
load("//lldb/source/Plugins:plugin_config.bzl", "DEFAULT_PLUGINS", "DEFAULT_SCRIPT_PLUGINS", "OBJCPP_COPTS")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("@bazel_skylib//rules:expand_template.bzl", "expand_template")
load("@rules_cc//cc:defs.bzl", "cc_library")
load("@rules_cc//cc:defs.bzl", "cc_library", "objc_library")
load("//mlir:tblgen.bzl", "gentbl_cc_library")
load(":plugin_config.bzl", "DEFAULT_PLUGINS", "DEFAULT_SCRIPT_PLUGINS", "OBJCPP_COPTS")

Expand Down
2 changes: 1 addition & 1 deletion utils/bazel/llvm-project-overlay/llvm/driver.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo")
load("@bazel_skylib//rules:expand_template.bzl", "expand_template")
load("@rules_cc//cc:defs.bzl", "cc_binary")
load("@rules_cc//cc:defs.bzl", "CcInfo", "cc_binary")

# Mapping from every tool to the cc_library that implements the tool's entrypoint.
_TOOLS = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_shared_library", "cc_test")
load("//mlir:tblgen.bzl", "gentbl_cc_library")

package(
Expand Down
2 changes: 1 addition & 1 deletion utils/bazel/llvm-project-overlay/mlir/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

"""Rules and macros for MLIR"""

load("@rules_cc//cc:defs.bzl", "cc_library")
load("@rules_cc//cc:defs.bzl", "CcInfo", "cc_library")

def if_cuda_available(if_true, if_false = []):
return select({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# MLIR transform dialect standalone example.

load("@rules_cc//cc:defs.bzl", "cc_binary")

package(default_visibility = ["//visibility:public"])

cc_binary(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Description:
# MLIR Tutorial

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")

licenses(["notice"])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Description:
# MLIR Tutorial

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")

licenses(["notice"])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Description:
# MLIR Tutorial

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")

licenses(["notice"])
Expand Down
Loading