reorder toolchain targets to help clarity

This commit is contained in:
Chris Parsons 2019-01-14 17:30:23 -05:00
parent 88904e62e5
commit 8a9bd0beed
1 changed files with 9 additions and 9 deletions

View File

@ -19,6 +19,15 @@ exit /b 1
visibility = ["//visibility:public"],
)
toolchain(
name = "cmd_toolchain",
exec_compatible_with = [
"@bazel_tools//platforms:windows",
],
toolchain = ":cmd",
toolchain_type = TOOLCHAIN_TYPE,
)
unittest_toolchain(
name = "bash",
failure_templ = """#!/bin/sh
@ -33,15 +42,6 @@ exit 1
visibility = ["//visibility:public"],
)
toolchain(
name = "cmd_toolchain",
exec_compatible_with = [
"@bazel_tools//platforms:windows",
],
toolchain = ":cmd",
toolchain_type = TOOLCHAIN_TYPE,
)
toolchain(
name = "bash_toolchain",
toolchain = ":bash",