blob: f6d688caa9fda7db4a196125bf02a7cbcb1779f7 [file] [log] [blame]
Joe Onorato48bd6f52016-04-06 14:48:30 -07001# Print a list of the modules that could be built
2
3MODULE_INFO_JSON := $(PRODUCT_OUT)/module-info.json
4
5$(MODULE_INFO_JSON):
6 @echo Generating $@
7 $(hide) echo -ne '{\n ' > $@
8 $(hide) echo -ne $(foreach m, $(sort $(ALL_MODULES)), \
9 ' "$(m)": {' \
10 '"class": [$(foreach w,$(sort $(ALL_MODULES.$(m).CLASS)),"$(w)", )], ' \
11 '"path": [$(foreach w,$(sort $(ALL_MODULES.$(m).PATH)),"$(w)", )], ' \
12 '"tags": [$(foreach w,$(sort $(ALL_MODULES.$(m).TAGS)),"$(w)", )], ' \
13 '"installed": [$(foreach w,$(sort $(ALL_MODULES.$(m).INSTALLED)),"$(w)", )], ' \
Kevin Cheng22609182017-11-28 15:04:40 -080014 '"compatibility_suites": [$(foreach w,$(sort $(ALL_MODULES.$(m).COMPATIBILITY_SUITES)),"$(w)", )], ' \
Joe Onorato48bd6f52016-04-06 14:48:30 -070015 '},\n' \
16 ) | sed -e 's/, *\]/]/g' -e 's/, *\}/ }/g' -e '$$s/,$$//' >> $@
17 $(hide) echo '}' >> $@
18
19
20# If ONE_SHOT_MAKEFILE is set, our view of the world is smaller, so don't
21# rewrite the file in that came.
22ifndef ONE_SHOT_MAKEFILE
23files: $(MODULE_INFO_JSON)
24endif
25