1# 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"""Rule adapter for android_sdk.""" 15 16load(":adapters/base.bzl", "make_adapter") 17load(":providers.bzl", "MIAndroidSdkInfo") 18 19def _aspect_attrs(): 20 """Attrs of the rule requiring traversal by the aspect.""" 21 return ["aidl_lib"] 22 23def _adapt(unused_target, ctx): 24 """Adapts the rule and target data. 25 26 Args: 27 unused_target: The target. 28 ctx: The context. 29 30 Returns: 31 A list of providers. 32 """ 33 return [ 34 MIAndroidSdkInfo( 35 aidl_lib = ctx.rule.attr.aidl_lib, 36 ), 37 ] 38 39android_sdk = make_adapter(_aspect_attrs, _adapt) 40