am f9c83b8f: am 116e7aeb: Merge "frameworks/native/docs: add doxygen configuration"

* commit 'f9c83b8f889cb3409d60bdfce71d8c6a8ad39941':
  frameworks/native/docs: add doxygen configuration
This commit is contained in:
Johan Euphrosine 2015-05-22 22:51:42 +00:00 committed by Android Git Automerger
commit f05bbae08d
3 changed files with 1919 additions and 0 deletions

1902
docs/Doxyfile Normal file

File diff suppressed because it is too large Load Diff

14
docs/Makefile Normal file
View File

@ -0,0 +1,14 @@
HEADERS := $(wildcard ../include/android/*.h)
all: html jd
html: $(HEADERS) Doxyfile
mkdir -p html
doxygen
jd: $(HEADERS) Doxyfile header.jd
mkdir -p jd
HTML_HEADER=header.jd HTML_OUTPUT=jd doxygen
for file in jd/*.html; do mv "$${file}" "$${file/\.html/\.jd}"; done
rm -f jd/index.jd

3
docs/header.jd Normal file
View File

@ -0,0 +1,3 @@
page.title=$title
page.customHeadTag=<link rel="stylesheet" type="text/css" href="doxygen-dac.css">
@jd:body