blob: 564225cd8f7463da4251f8cd7e6bb81b1b219582 [file]
# Copyright 2019 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("//iree:lit_test.bzl", "iree_lit_test_suite")
load("//build_tools/bazel:enforce_glob.bzl", "enforce_glob")
package(
default_visibility = ["//visibility:public"],
features = ["layering_check"],
licenses = ["notice"], # Apache 2.0
)
iree_lit_test_suite(
name = "lit",
srcs = enforce_glob(
[
"allocator_op_folding.mlir",
"allocator_ops.mlir",
"attributes.mlir",
"buffer_folding.mlir",
"buffer_ops.mlir",
"buffer_view_folding.mlir",
"buffer_view_ops.mlir",
"command_buffer_folding.mlir",
"command_buffer_ops.mlir",
"constant_folding.mlir",
"constant_ops.mlir",
"descriptor_set_ops.mlir",
"device_ops.mlir",
"executable_ops.mlir",
"executable_targets.mlir",
"experimental_ops.mlir",
"interface_ops.mlir",
"invalid.mlir",
"semaphore_ops.mlir",
],
include = ["*.mlir"],
),
data = [
"//iree/tools:IreeFileCheck",
"//iree/tools:iree-opt",
],
)