blob: abd2581516d61d6b4ffe15a9e4201750d9066587 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001# Copyright (C) 2008 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
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18LOCAL_MODULE_TAGS := docs
19
20LOCAL_SRC_FILES := \
21 AnnotationInstanceInfo.java \
22 AnnotationValueInfo.java \
23 AttributeInfo.java \
24 AttrTagInfo.java \
25 ClassInfo.java \
26 DroidDoc.java \
27 ClearPage.java \
28 Comment.java \
29 ContainerInfo.java \
30 Converter.java \
31 DocFile.java \
32 DocInfo.java \
33 Errors.java \
34 FieldInfo.java \
35 Hierarchy.java \
36 InheritedTags.java \
37 KeywordEntry.java \
38 LinkReference.java \
39 LiteralTagInfo.java \
40 MemberInfo.java \
41 MethodInfo.java \
42 NavTree.java \
43 PackageInfo.java \
44 ParamTagInfo.java \
45 ParameterInfo.java \
46 ParsedTagInfo.java \
47 Proofread.java \
48 SampleCode.java \
49 SampleTagInfo.java \
50 Scoped.java \
51 SeeTagInfo.java \
52 Sorter.java \
53 SourcePositionInfo.java \
54 Stubs.java \
55 TagInfo.java \
56 TextTagInfo.java \
57 ThrowsTagInfo.java \
58 TodoFile.java \
59 TypeInfo.java
60
61LOCAL_JAVA_LIBRARIES := \
62 clearsilver
63
64LOCAL_CLASSPATH := \
65 $(HOST_JDK_TOOLS_JAR)
66
67LOCAL_MODULE:= droiddoc
68
69include $(BUILD_HOST_JAVA_LIBRARY)