// Copyright 2015 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. package com.google.devtools.build.lib.bazel.rules.android; import static com.google.devtools.build.lib.packages.Attribute.attr; import static com.google.devtools.build.lib.syntax.Type.INTEGER; import static com.google.devtools.build.lib.syntax.Type.STRING; import com.google.common.base.Function; import com.google.common.collect.ImmutableMap; import com.google.devtools.build.lib.analysis.RuleDefinition; import com.google.devtools.build.lib.analysis.RuleDefinitionEnvironment; import com.google.devtools.build.lib.cmdline.Label; import com.google.devtools.build.lib.packages.Rule; import com.google.devtools.build.lib.packages.RuleClass; import com.google.devtools.build.lib.packages.RuleClass.Builder; import com.google.devtools.build.lib.packages.RuleClass.Builder.RuleClassType; import com.google.devtools.build.lib.rules.repository.WorkspaceBaseRule; import com.google.devtools.build.lib.rules.repository.WorkspaceConfiguredTargetFactory; import java.util.Map; import javax.annotation.Nullable; /** * Definition of the {@code android_sdk_repository} rule. */ public class AndroidSdkRepositoryRule implements RuleDefinition { public static final String NAME = "android_sdk_repository"; private static final Function> BINDINGS_FUNCTION = new Function>() { @Nullable @Override public Map apply(Rule rule) { String prefix = "@" + rule.getName() + "//:"; ImmutableMap.Builder builder = ImmutableMap.builder(); builder.put("android/sdk", Label.parseAbsoluteUnchecked(prefix + "sdk")); builder.put( "android/google_play_services", Label.parseAbsoluteUnchecked(prefix + "google_play_services")); builder.put( "android/appcompat_v4", Label.parseAbsoluteUnchecked(prefix + "appcompat_v4")); builder.put( "android/appcompat_v7", Label.parseAbsoluteUnchecked(prefix + "appcompat_v7")); builder.put("android/design", Label.parseAbsoluteUnchecked(prefix + "design")); builder.put( "android/mediarouter_v7", Label.parseAbsoluteUnchecked(prefix + "mediarouter_v7")); builder.put("android/cardview_v7", Label.parseAbsoluteUnchecked(prefix + "cardview_v7")); builder.put( "android/gridlayout_v7", Label.parseAbsoluteUnchecked(prefix + "gridlayout_v7")); builder.put("android/palette_v7", Label.parseAbsoluteUnchecked(prefix + "palette_v7")); builder.put( "android/recyclerview_v7", Label.parseAbsoluteUnchecked(prefix + "recyclerview_v7")); return builder.build(); } }; @Override public RuleClass build(Builder builder, RuleDefinitionEnvironment environment) { return builder .setUndocumented() .setWorkspaceOnly() .setExternalBindingsFunction(BINDINGS_FUNCTION) .add(attr("path", STRING).mandatory().nonconfigurable("WORKSPACE rule")) .add(attr("build_tools_version", STRING).mandatory().nonconfigurable("WORKSPACE rule")) .add(attr("api_level", INTEGER).mandatory().nonconfigurable("WORKSPACE rule")) .build(); } @Override public Metadata getMetadata() { return RuleDefinition.Metadata.builder() .name(AndroidSdkRepositoryRule.NAME) .type(RuleClassType.WORKSPACE) .ancestors(WorkspaceBaseRule.class) .factoryClass(WorkspaceConfiguredTargetFactory.class) .build(); } }