aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/launcher/BUILD.tools
blob: d9a02365c23f4a4e507771914c93eeadfcd94e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "launcher_windows",
    srcs = select({
      "//src/conditions:remote": ["//src/tools/launcher:launcher"],
      "//conditions:default": ["launcher.exe"],
    }),
)

filegroup(
    name = "launcher",
    srcs = select({
      "//src/conditions:host_windows": [":launcher_windows"],
      "//conditions:default": [
        "//src/tools/launcher:launcher",
      ],
    }),
)