diff options
author | Dirk Dougherty <ddougherty@google.com> | 2013-01-29 00:40:57 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-01-29 00:40:57 +0000 |
commit | 7b32d32bd38b423dd141e7ead89205b9b7929497 (patch) | |
tree | 129d29ea65d6bd56467ac8cd05de88d82b8cb9c3 | |
parent | 2c1669c427826fba48ae7776e34f90cdcc5a3a20 (diff) | |
parent | 289ad99c17bd4eda0d2c153732e755a8a956609e (diff) | |
download | frameworks_base-7b32d32bd38b423dd141e7ead89205b9b7929497.zip frameworks_base-7b32d32bd38b423dd141e7ead89205b9b7929497.tar.gz frameworks_base-7b32d32bd38b423dd141e7ead89205b9b7929497.tar.bz2 |
Merge "Add build rule for ds (devsite) online docs." into jb-mr1-dev
-rw-r--r-- | Android.mk | 32 |
1 files changed, 31 insertions, 1 deletions
@@ -647,7 +647,7 @@ $(static_doc_index_redirect): \ $(full_target): $(static_doc_index_redirect) $(full_target): $(framework_built) -# ==== docs for the web (on the google app engine server) ======================= +# ==== docs for the web (on the androiddevdocs app engine server) ======================= include $(CLEAR_VARS) LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) @@ -676,6 +676,36 @@ include $(BUILD_DROIDDOC) # explicitly specify that online-sdk depends on framework-res and any generated docs $(full_target): framework-res-package-target +# ==== docs for the web (on the devsite app engine server) ======================= +include $(CLEAR_VARS) +LOCAL_SRC_FILES:=$(framework_docs_LOCAL_SRC_FILES) +LOCAL_INTERMEDIATE_SOURCES:=$(framework_docs_LOCAL_INTERMEDIATE_SOURCES) +LOCAL_STATIC_JAVA_LIBRARIES:=$(framework_docs_LOCAL_STATIC_JAVA_LIBRARIES) +LOCAL_JAVA_LIBRARIES:=$(framework_docs_LOCAL_JAVA_LIBRARIES) +LOCAL_MODULE_CLASS:=$(framework_docs_LOCAL_MODULE_CLASS) +LOCAL_DROIDDOC_SOURCE_PATH:=$(framework_docs_LOCAL_DROIDDOC_SOURCE_PATH) +LOCAL_DROIDDOC_HTML_DIR:=$(framework_docs_LOCAL_DROIDDOC_HTML_DIR) +LOCAL_ADDITIONAL_JAVA_DIR:=$(framework_docs_LOCAL_ADDITIONAL_JAVA_DIR) +LOCAL_ADDITIONAL_DEPENDENCIES:=$(framework_docs_LOCAL_ADDITIONAL_DEPENDENCIES) +# specify a second html input dir and an output path relative to OUT_DIR) +LOCAL_ADDITIONAL_HTML_DIR:=docs/html-intl / + +LOCAL_MODULE := ds + +LOCAL_DROIDDOC_OPTIONS:= \ + $(framework_docs_LOCAL_DROIDDOC_OPTIONS) \ + $(web_docs_sample_code_flags) \ + -devsite \ + -toroot / \ + -hdf android.whichdoc online + +LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-ds + +include $(BUILD_DROIDDOC) + +# explicitly specify that ds depends on framework-res and any generated docs +$(full_target): framework-res-package-target + # ==== docs that have all of the stuff that's @hidden ======================= include $(CLEAR_VARS) |