blob: 623f99c5243346f35098713c625e8312d36aba60 [file] [log] [blame]
Joe Onorato48bd6f52016-04-06 14:48:30 -07001# Print a list of the modules that could be built
yangbillfa5026c2022-02-08 16:59:21 +08002# Currently runtime_dependencies only include the runtime libs information for cc binaries.
Joe Onorato48bd6f52016-04-06 14:48:30 -07003
4MODULE_INFO_JSON := $(PRODUCT_OUT)/module-info.json
LaMont Jonesedc62e82023-06-02 21:56:24 +00005COMMA := ,
LaMont Jonesedc62e82023-06-02 21:56:24 +00006_NEWLINE := '\n'
Joe Onorato48bd6f52016-04-06 14:48:30 -07007
Colin Cross4ea5e852023-11-07 11:17:41 -08008define write-optional-json-list
9$(if $(strip $(2)),'$(COMMA)$(strip $(1)): [$(KATI_foreach_sep w,$(COMMA) ,$(2),"$(w)")]')
10endef
11
12define write-optional-json-bool
13$(if $(strip $(2)),'$(COMMA)$(strip $(1)): "$(strip $(2))"')
14endef
15
Colin Cross3b89c652023-11-06 13:54:39 -080016SOONG_MODULE_INFO := $(SOONG_OUT_DIR)/module-info-$(TARGET_PRODUCT).json
17
18$(MODULE_INFO_JSON): PRIVATE_SOONG_MODULE_INFO := $(SOONG_MODULE_INFO)
19$(MODULE_INFO_JSON): PRIVATE_MERGE_JSON_OBJECTS := $(HOST_OUT_EXECUTABLES)/merge_module_info_json
20$(MODULE_INFO_JSON): $(HOST_OUT_EXECUTABLES)/merge_module_info_json
21$(MODULE_INFO_JSON): $(SOONG_MODULE_INFO)
Joe Onorato48bd6f52016-04-06 14:48:30 -070022 @echo Generating $@
Colin Cross3b89c652023-11-06 13:54:39 -080023 $(hide) echo -ne '{\n ' > $@.tmp
24 $(hide) echo -ne $(KATI_foreach_sep m,$(COMMA)$(_NEWLINE), $(sort $(ALL_MAKE_MODULE_INFO_JSON_MODULES)),\
LaMont Jones3a9ce1d2023-06-06 20:39:05 +000025 '"$(m)": {' \
Colin Cross4ea5e852023-11-07 11:17:41 -080026 '"module_name": "$(ALL_MODULES.$(m).MODULE_NAME)"' \
27 $(call write-optional-json-list, "class", $(sort $(ALL_MODULES.$(m).CLASS))) \
28 $(call write-optional-json-list, "path", $(sort $(ALL_MODULES.$(m).PATH))) \
29 $(call write-optional-json-list, "tags", $(sort $(ALL_MODULES.$(m).TAGS))) \
30 $(call write-optional-json-list, "installed", $(sort $(ALL_MODULES.$(m).INSTALLED))) \
31 $(call write-optional-json-list, "compatibility_suites", $(sort $(ALL_MODULES.$(m).COMPATIBILITY_SUITES))) \
32 $(call write-optional-json-list, "auto_test_config", $(sort $(ALL_MODULES.$(m).auto_test_config))) \
33 $(call write-optional-json-list, "test_config", $(strip $(ALL_MODULES.$(m).TEST_CONFIG) $(ALL_MODULES.$(m).EXTRA_TEST_CONFIGS))) \
34 $(call write-optional-json-list, "dependencies", $(sort $(ALL_MODULES.$(m).ALL_DEPS))) \
Hugo Drumond Jacobfaf9b012024-05-20 18:32:50 +020035 $(call write-optional-json-list, "required", $(sort $(ALL_MODULES.$(m).REQUIRED_FROM_TARGET))) \
Colin Cross4ea5e852023-11-07 11:17:41 -080036 $(call write-optional-json-list, "shared_libs", $(sort $(ALL_MODULES.$(m).SHARED_LIBS))) \
37 $(call write-optional-json-list, "static_libs", $(sort $(ALL_MODULES.$(m).STATIC_LIBS))) \
38 $(call write-optional-json-list, "system_shared_libs", $(sort $(ALL_MODULES.$(m).SYSTEM_SHARED_LIBS))) \
39 $(call write-optional-json-list, "srcs", $(sort $(ALL_MODULES.$(m).SRCS))) \
40 $(call write-optional-json-list, "srcjars", $(sort $(ALL_MODULES.$(m).SRCJARS))) \
41 $(call write-optional-json-list, "classes_jar", $(sort $(ALL_MODULES.$(m).CLASSES_JAR))) \
42 $(call write-optional-json-list, "test_mainline_modules", $(sort $(ALL_MODULES.$(m).TEST_MAINLINE_MODULES))) \
yike9ec7a002024-04-04 23:30:38 +000043 $(call write-optional-json-bool, "is_unit_test", $(ALL_MODULES.$(m).IS_UNIT_TEST)) \
Colin Cross4ea5e852023-11-07 11:17:41 -080044 $(call write-optional-json-list, "test_options_tags", $(sort $(ALL_MODULES.$(m).TEST_OPTIONS_TAGS))) \
45 $(call write-optional-json-list, "data", $(sort $(ALL_MODULES.$(m).TEST_DATA))) \
46 $(call write-optional-json-list, "runtime_dependencies", $(sort $(ALL_MODULES.$(m).LOCAL_RUNTIME_LIBRARIES))) \
47 $(call write-optional-json-list, "static_dependencies", $(sort $(ALL_MODULES.$(m).LOCAL_STATIC_LIBRARIES))) \
48 $(call write-optional-json-list, "data_dependencies", $(sort $(ALL_MODULES.$(m).TEST_DATA_BINS))) \
49 $(call write-optional-json-list, "supported_variants", $(sort $(ALL_MODULES.$(m).SUPPORTED_VARIANTS))) \
50 $(call write-optional-json-list, "host_dependencies", $(sort $(ALL_MODULES.$(m).HOST_REQUIRED_FROM_TARGET))) \
51 $(call write-optional-json-list, "target_dependencies", $(sort $(ALL_MODULES.$(m).TARGET_REQUIRED_FROM_HOST))) \
Colin Cross3b89c652023-11-06 13:54:39 -080052 '}')'\n}\n' >> $@.tmp
53 $(PRIVATE_MERGE_JSON_OBJECTS) -o $@ $(PRIVATE_SOONG_MODULE_INFO) $@.tmp
54 rm $@.tmp
Joe Onorato48bd6f52016-04-06 14:48:30 -070055
56
Bill Peckham16da01f2021-06-15 19:35:06 -070057droidcore-unbundled: $(MODULE_INFO_JSON)
Joe Onorato48bd6f52016-04-06 14:48:30 -070058
Simran Basi03f52532018-09-06 12:23:11 -070059$(call dist-for-goals, general-tests, $(MODULE_INFO_JSON))
Bill Peckham16da01f2021-06-15 19:35:06 -070060$(call dist-for-goals, droidcore-unbundled, $(MODULE_INFO_JSON))
Cole Faust5d825b72022-10-26 18:16:44 -070061
62# On every build, generate an all_modules.txt file to be used for autocompleting
63# the m command. After timing this using $(shell date +"%s.%3N"), it only adds
64# 0.01 seconds to the internal master build, and will only rerun on builds that
65# rerun kati.
66$(file >$(PRODUCT_OUT)/all_modules.txt,$(subst $(space),$(newline),$(ALL_MODULES)))