Merge "frameworks/native/docs: add doxygen configuration"

This commit is contained in:
Johan Euphrosine 2015-05-22 22:28:24 +00:00 committed by Gerrit Code Review
commit 116e7aebb6
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