Elliott Hughes | c3d30bf | 2011-01-07 16:24:47 -0800 | [diff] [blame] | 1 | # -*- mode: makefile -*- |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 2 | # List of libcore directories to include in documentation. |
| 3 | # Shared between libcore and frameworks/base. |
Ying Wang | 21ac42d | 2013-12-04 15:54:36 -0800 | [diff] [blame] | 4 | # Exports: libcore_to_document as a list of .java files relative to libcore/. |
Brian Carlstrom | dc3c152 | 2011-01-05 17:48:05 -0800 | [diff] [blame] | 5 | |
Ying Wang | 21ac42d | 2013-12-04 15:54:36 -0800 | [diff] [blame] | 6 | ifndef libcore_docs_include_once |
Brian Carlstrom | cfa84a2 | 2011-03-24 13:55:02 -0700 | [diff] [blame] | 7 | |
Narayan Kamath | 7ea8d82 | 2015-07-24 18:38:44 +0100 | [diff] [blame] | 8 | include libcore/openjdk_java_files.mk |
| 9 | include libcore/non_openjdk_java_files.mk |
| 10 | |
| 11 | |
Brian Carlstrom | cfa84a2 | 2011-03-24 13:55:02 -0700 | [diff] [blame] | 12 | # List of libcore javadoc source files |
Przemyslaw Szczepaniak | 70b617f | 2015-11-20 12:01:45 +0000 | [diff] [blame] | 13 | _libcore_files := $(openjdk_javadoc_files) $(non_openjdk_javadoc_files) |
Neil Fuller | 4259738 | 2015-10-07 11:00:01 +0100 | [diff] [blame] | 14 | _libcore_files := $(addprefix libcore/, $(_libcore_files)) |
| 15 | |
| 16 | _icu_files := \ |
| 17 | $(call find-files-in-subdirs, external/icu, \ |
| 18 | "*.java", \ |
| 19 | android_icu4j/src/main/java/android/icu/lang \ |
| 20 | android_icu4j/src/main/java/android/icu/math \ |
| 21 | android_icu4j/src/main/java/android/icu/text \ |
| 22 | android_icu4j/src/main/java/android/icu/util \ |
| 23 | ) |
| 24 | _icu_files := $(addprefix external/icu/, $(_icu_files)) |
| 25 | |
| 26 | # List of libcore-related javadoc source files |
| 27 | # |
| 28 | # NOTE: Because libcore-related source spans modules (not just libcore!), files names here are |
| 29 | # returned that are relative to the build root / $(TOPDIR) and not libcore. |
| 30 | # BUILD_DROIDDOC requires file names that are relative the *current* LOCAL_DIR so users must account |
| 31 | # for this. |
| 32 | libcore_to_document := $(_libcore_files) $(_icu_files) |
Ying Wang | 21ac42d | 2013-12-04 15:54:36 -0800 | [diff] [blame] | 33 | |
| 34 | libcore_docs_include_once := 1 |
| 35 | endif # libcore_docs_include_once |