blob: c0c583d5629be547e35934b779548459f851eef5 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001# 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 PackageInfo.java \
43 ParamTagInfo.java \
44 ParameterInfo.java \
45 ParsedTagInfo.java \
46 Proofread.java \
47 SampleCode.java \
48 SampleTagInfo.java \
49 Scoped.java \
50 SeeTagInfo.java \
51 Sorter.java \
52 SourcePositionInfo.java \
53 Stubs.java \
54 TagInfo.java \
55 TextTagInfo.java \
56 ThrowsTagInfo.java \
57 TodoFile.java \
58 TypeInfo.java
59
60LOCAL_JAVA_LIBRARIES := \
61 clearsilver
62
63LOCAL_CLASSPATH := \
64 $(HOST_JDK_TOOLS_JAR)
65
66LOCAL_MODULE:= droiddoc
67
68include $(BUILD_HOST_JAVA_LIBRARY)