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