xref: /aosp_15_r20/tools/asuite/atest/bazel/resources/WORKSPACE (revision c2e18aaa1096c836b086f94603d04f4eb9cf37f5)
1*c2e18aaaSAndroid Build Coastguard Workerregister_toolchains(
2*c2e18aaaSAndroid Build Coastguard Worker    "//prebuilts/build-tools:py_toolchain",
3*c2e18aaaSAndroid Build Coastguard Worker    "//prebuilts/jdk/jdk21:runtime_toolchain_definition",
4*c2e18aaaSAndroid Build Coastguard Worker)
5*c2e18aaaSAndroid Build Coastguard Worker
6*c2e18aaaSAndroid Build Coastguard Worker# `device_infra` repository provides rules needed to start cuttlefish devices
7*c2e18aaaSAndroid Build Coastguard Worker# remotely. This repository is loaded when Bazel needs a target from it,
8*c2e18aaaSAndroid Build Coastguard Worker# otherwise won't load.
9*c2e18aaaSAndroid Build Coastguard Workerlocal_repository(
10*c2e18aaaSAndroid Build Coastguard Worker    name = "device_infra",
11*c2e18aaaSAndroid Build Coastguard Worker    path = "vendor/google/tools/atest/device_infra",
12*c2e18aaaSAndroid Build Coastguard Worker)
13*c2e18aaaSAndroid Build Coastguard Worker
14*c2e18aaaSAndroid Build Coastguard Workerlocal_repository(
15*c2e18aaaSAndroid Build Coastguard Worker    name = "rules_python",
16*c2e18aaaSAndroid Build Coastguard Worker    path = "external/bazelbuild-rules_python",
17*c2e18aaaSAndroid Build Coastguard Worker)
18*c2e18aaaSAndroid Build Coastguard Worker
19*c2e18aaaSAndroid Build Coastguard Workerload("@rules_python//python:repositories.bzl", "py_repositories")
20*c2e18aaaSAndroid Build Coastguard Worker
21*c2e18aaaSAndroid Build Coastguard Workerpy_repositories()
22*c2e18aaaSAndroid Build Coastguard Worker
23*c2e18aaaSAndroid Build Coastguard Workerlocal_repository(
24*c2e18aaaSAndroid Build Coastguard Worker    name = "rules_java",
25*c2e18aaaSAndroid Build Coastguard Worker    path = "external/bazelbuild-rules_java",
26*c2e18aaaSAndroid Build Coastguard Worker)
27