1# Copyright 2023 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 15"""Workspace setup macro for rules_android development.""" 16 17load("@cgrindel_bazel_starlib//:deps.bzl", "bazel_starlib_dependencies") 18load("@rules_bazel_integration_test//bazel_integration_test:defs.bzl", "bazel_binaries") 19load(":defs.bzl", non_dev_workspace = "rules_android_workspace") 20 21def rules_android_workspace(): 22 non_dev_workspace() 23 24 # Integration test setup 25 bazel_starlib_dependencies() 26 27 bazel_binaries( 28 versions = [ 29 "last_green", 30 ], 31 ) 32