• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2018 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
15package {
16    default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19java_binary_host {
20    name: "metalava",
21    srcs: [
22        "src/main/java/**/*.java",
23        "src/main/java/**/*.kt",
24    ],
25    java_resource_dirs: ["src/main/resources/"],
26    static_libs: [
27        "kotlin-reflect",
28        "metalava-tools-common-m2-deps",
29        "metalava-gradle-plugin-deps",
30    ],
31    manifest: "manifest.txt",
32    target: {
33        host: {
34            dist: {
35                targets: ["sdk"],
36            },
37        },
38    },
39    visibility: [
40        // Metalava is linked by //vendor/xts/gts-tests/hostsidetests/api, but because it's a
41        // make project, soong's visibility won't apply. Soong also won't let you specify a
42        // subpackage of //vendor/ here. So let's just make it private.
43        // When //vendor/xts/gts-tests/hostsidetests/api migrates to Android.bp, we need to
44        // open metalava to //vendor:__subpackages__.
45        "//visibility:private",
46    ],
47}
48
49java_library {
50    name: "stub-annotations",
51    host_supported: true,
52    srcs: [
53        "stub-annotations/src/main/java/**/*.java",
54    ],
55    // Allow core_current to use stub-annotations.
56    sdk_version: "28",
57    target: {
58        host: {
59            dist: {
60                targets: ["sdk"],
61            },
62        },
63    },
64}
65
66genrule {
67    name: "private-stub-annotations",
68    tools: [
69        "soong_zip",
70        "metalava",
71    ],
72    srcs: [
73        "stub-annotations/src/main/java/**/*.java",
74    ],
75    cmd: "($(location metalava) --no-banner --copy-annotations tools/metalava/stub-annotations " +
76        "$(genDir)/private-stub-annotations) && ($(location soong_zip) -o $(out) -C $(genDir) -D $(genDir))",
77    out: [
78        "private-stub-annotations.srcjar",
79    ],
80}
81
82java_library {
83    name: "private-stub-annotations-jar",
84    host_supported: true,
85    srcs: [
86        ":private-stub-annotations",
87    ],
88    sdk_version: "core_current",
89    // private-stub-annotations-jar ends up in android.jar in the SDK and should
90    // use -target 8.
91    java_version: "1.8",
92}
93
94droiddoc_exported_dir {
95    name: "metalava-manual",
96    path: "manual",
97}
98