• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2022 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#    http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""Setup for rules_python tests and tools."""
16
17load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
18load("@build_bazel_integration_testing//tools:repositories.bzl", "bazel_binaries")
19load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
20load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
21load("//:version.bzl", "SUPPORTED_BAZEL_VERSIONS")
22load("//python/pip_install:repositories.bzl", "pip_install_dependencies")
23
24def rules_python_internal_setup():
25    """Setup for rules_python tests and tools."""
26
27    # Because we don't use the pip_install rule, we have to call this to fetch its deps
28    pip_install_dependencies()
29
30    # Depend on the Bazel binaries for running bazel-in-bazel tests
31    bazel_binaries(versions = SUPPORTED_BAZEL_VERSIONS)
32
33    bazel_skylib_workspace()
34
35    rules_proto_dependencies()
36    rules_proto_toolchains()
37
38    protobuf_deps()
39