xref: /aosp_15_r20/external/bazelbuild-rules_rust/test/deps_transitive.bzl (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifan"""Rules rust test dependencies transitive dependencies."""
2*d4726bddSHONG Yifan
3*d4726bddSHONG Yifanload("@com_google_googleapis//:repository_rules.bzl", "switched_rules_by_language")
4*d4726bddSHONG Yifanload("@rules_python//python:repositories.bzl", "py_repositories")
5*d4726bddSHONG Yifan
6*d4726bddSHONG Yifandef rules_rust_test_deps_transitive():
7*d4726bddSHONG Yifan    py_repositories()
8*d4726bddSHONG Yifan
9*d4726bddSHONG Yifan    switched_rules_by_language(
10*d4726bddSHONG Yifan        name = "com_google_googleapis_imports",
11*d4726bddSHONG Yifan        cc = False,
12*d4726bddSHONG Yifan        csharp = False,
13*d4726bddSHONG Yifan        gapic = False,
14*d4726bddSHONG Yifan        go = False,
15*d4726bddSHONG Yifan        grpc = False,
16*d4726bddSHONG Yifan        java = False,
17*d4726bddSHONG Yifan        nodejs = False,
18*d4726bddSHONG Yifan        php = False,
19*d4726bddSHONG Yifan        python = False,
20*d4726bddSHONG Yifan        ruby = False,
21*d4726bddSHONG Yifan    )
22