1// Copyright (C) 2006 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
15droidstubs_host {
16    name: "dx-doc-stubs",
17    srcs: [
18        "com/**/*.java",
19    ],
20    args: "--hidden",
21    create_doc_stubs: true,
22    product_variables: {
23        pdk: {
24            enabled: false,
25        },
26        unbundled_build: {
27            enabled: false,
28        },
29    },
30}
31
32droiddoc_host {
33    name: "dx-docs",
34    srcs: [
35        ":dx-doc-stubs",
36    ],
37    custom_template: "droiddoc-templates-sdk",
38    create_stubs: false,
39    product_variables: {
40        pdk: {
41            enabled: false,
42        },
43        unbundled_build: {
44            enabled: false,
45        },
46    },
47}
48