• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2022 The Android Open Source Project
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"""Starlark rules for building Android apps."""
16
17load(
18    ":aar_import.bzl",
19    _aar_import = "aar_import",
20)
21load(
22    "@rules_android//rules:rules.bzl",
23    _android_application = "android_application",
24)
25load(
26    "@rules_android//rules:rules.bzl",
27    _android_ndk_repository = "android_ndk_repository",
28)
29load(
30    "@rules_android//rules:rules.bzl",
31    _android_sdk = "android_sdk",
32)
33load(
34    "@rules_android//rules:rules.bzl",
35    _android_sdk_repository = "android_sdk_repository",
36)
37load(
38    "@rules_android//rules:rules.bzl",
39    _android_tools_defaults_jar = "android_tools_defaults_jar",
40)
41load(
42    ":android_app_certificate.bzl",
43    _android_app_certificate = "android_app_certificate",
44)
45load(
46    ":android_binary.bzl",
47    _android_binary = "android_binary",
48)
49load(
50    ":android_library.bzl",
51    _android_library = "android_library",
52)
53
54aar_import = _aar_import
55android_application = _android_application
56android_app_certificate = _android_app_certificate
57android_binary = _android_binary
58android_library = _android_library
59android_ndk_repository = _android_ndk_repository
60android_sdk = _android_sdk
61android_sdk_repository = _android_sdk_repository
62android_tools_defaults_jar = _android_tools_defaults_jar
63