| # Copyright 2018 The Bazel Authors. All rights reserved. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| """ |
| This module implements the node toolchain rule. |
| """ |
| |
| NodeInfo = provider( |
| doc = "Information about how to invoke the node executable.", |
| fields = { |
| "target_tool": "A hermetically downloaded nodejs executable target for the target platform.", |
| "target_tool_path": "Path to an existing nodejs executable for the target platform..", |
| }, |
| ) |
| |
| def _node_toolchain_impl(ctx): |
| if ctx.attr.target_tool and ctx.attr.target_tool_path: |
| fail("Can only set one of target_tool or target_tool_path but both where set.") |
| if not ctx.attr.target_tool and not ctx.attr.target_tool_path: |
| fail("Must set one of target_tool or target_tool_path.") |
| |
| toolchain_info = platform_common.ToolchainInfo( |
| nodeinfo = NodeInfo( |
| target_tool_path = ctx.attr.target_tool_path, |
| target_tool = ctx.attr.target_tool, |
| ), |
| ) |
| return [toolchain_info] |
| |
| node_toolchain = rule( |
| implementation = _node_toolchain_impl, |
| attrs = { |
| "target_tool": attr.label( |
| doc = "A hermetically downloaded nodejs executable target for the target platform..", |
| mandatory = False, |
| allow_single_file = True, |
| ), |
| "target_tool_path": attr.string( |
| doc = "Path to an existing nodejs executable for the target platform..", |
| mandatory = False, |
| ), |
| }, |
| ) |
| """ |
| Defines a node toolchain. |
| |
| For usage see https://docs.bazel.build/versions/master/toolchains.html#defining-toolchains. |
| """ |