blob: 2a3370469c2fbf9a359ceef8af11c60dac9816be [file] [log] [blame]
Laszlo Csomor81ed3ad2018-04-16 05:11:38 -07001# Copyright 2018 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14"""Define a toolchain rule for the shell."""
15
16def _sh_toolchain_impl(ctx):
vladmos20a042f2018-06-01 04:51:21 -070017 """sh_toolchain rule implementation."""
18 return [platform_common.ToolchainInfo(path = ctx.attr.path)]
Laszlo Csomor81ed3ad2018-04-16 05:11:38 -070019
20sh_toolchain = rule(
21 attrs = {
22 # Absolute path to the shell interpreter.
23 "path": attr.string(),
24 },
25 implementation = _sh_toolchain_impl,
26)