Peter Hawkins 88c2898e36 Use pytype_strict_library() in Bazel build rules.
PiperOrigin-RevId: 519757928
2023-03-27 10:16:08 -07:00

52 lines
1.6 KiB
Python

# Copyright 2023 The JAX Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load(
"//jaxlib:jax.bzl",
"jax_visibility",
"py_library_providing_imports_info",
"pytype_strict_library",
)
package(default_visibility = ["//:__subpackages__"])
py_library_providing_imports_info(
name = "lib",
srcs = [
"__init__.py",
"mlir/__init__.py",
"mlir/dialects/__init__.py",
],
lib_rule = pytype_strict_library,
visibility = ["//jax:internal"] + jax_visibility("lib"),
deps = [
"//jax:version",
] + select({
"//jax:enable_jaxlib_build": [
"//jaxlib/mlir:builtin_dialect",
"//jaxlib/mlir:chlo_dialect",
"//jaxlib/mlir:func_dialect",
"//jaxlib/mlir:ir",
"//jaxlib/mlir:mhlo_dialect",
"//jaxlib/mlir:ml_program_dialect",
"//jaxlib/mlir:sparse_tensor_dialect",
"//jaxlib/mlir:stablehlo_dialect",
"//jaxlib",
"//jaxlib:cpu_feature_guard",
# xla_client
],
"//conditions:default": [],
}),
)