xref: /aosp_15_r20/external/bazelbuild-rules_python/examples/bzlmod/runfiles/BUILD.bazel (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
1*60517a1eSAndroid Build Coastguard Workerload("@rules_python//python:defs.bzl", "py_test")
2*60517a1eSAndroid Build Coastguard Worker
3*60517a1eSAndroid Build Coastguard Workerpy_test(
4*60517a1eSAndroid Build Coastguard Worker    name = "runfiles_test",
5*60517a1eSAndroid Build Coastguard Worker    srcs = ["runfiles_test.py"],
6*60517a1eSAndroid Build Coastguard Worker    data = [
7*60517a1eSAndroid Build Coastguard Worker        "data/data.txt",
8*60517a1eSAndroid Build Coastguard Worker        "@our_other_module//other_module/pkg:data/data.txt",
9*60517a1eSAndroid Build Coastguard Worker    ],
10*60517a1eSAndroid Build Coastguard Worker    env = {
11*60517a1eSAndroid Build Coastguard Worker        "DATA_RLOCATIONPATH": "$(rlocationpath data/data.txt)",
12*60517a1eSAndroid Build Coastguard Worker        "OTHER_MODULE_DATA_RLOCATIONPATH": "$(rlocationpath @our_other_module//other_module/pkg:data/data.txt)",
13*60517a1eSAndroid Build Coastguard Worker    },
14*60517a1eSAndroid Build Coastguard Worker    deps = [
15*60517a1eSAndroid Build Coastguard Worker        "@our_other_module//other_module/pkg:lib",
16*60517a1eSAndroid Build Coastguard Worker        "@rules_python//python/runfiles",
17*60517a1eSAndroid Build Coastguard Worker    ],
18*60517a1eSAndroid Build Coastguard Worker)
19