Merge "Add static_libs to module-info.json" am: b1bae84508
Original change: https://android-review.googlesource.com/c/platform/build/+/2590127 Change-Id: I998c016d06dfd67ab09501898ebd4e1b2ab23f5e Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
32267a425f
2 changed files with 5 additions and 1 deletions
|
@ -1005,6 +1005,9 @@ endif
|
|||
ALL_MODULES.$(my_register_name).SHARED_LIBS := \
|
||||
$(ALL_MODULES.$(my_register_name).SHARED_LIBS) $(LOCAL_SHARED_LIBRARIES)
|
||||
|
||||
ALL_MODULES.$(my_register_name).STATIC_LIBS := \
|
||||
$(ALL_MODULES.$(my_register_name).STATIC_LIBS) $(LOCAL_STATIC_LIBRARIES)
|
||||
|
||||
ALL_MODULES.$(my_register_name).SYSTEM_SHARED_LIBS := \
|
||||
$(ALL_MODULES.$(my_register_name).SYSTEM_SHARED_LIBS) $(LOCAL_SYSTEM_SHARED_LIBRARIES)
|
||||
|
||||
|
@ -1234,4 +1237,4 @@ include $(BUILD_NOTICE_FILE)
|
|||
###########################################################
|
||||
## SBOM generation
|
||||
###########################################################
|
||||
include $(BUILD_SBOM_GEN)
|
||||
include $(BUILD_SBOM_GEN)
|
||||
|
|
|
@ -18,6 +18,7 @@ $(MODULE_INFO_JSON):
|
|||
'"test_config": [$(foreach w,$(strip $(ALL_MODULES.$(m).TEST_CONFIG) $(ALL_MODULES.$(m).EXTRA_TEST_CONFIGS)),"$(w)", )], ' \
|
||||
'"dependencies": [$(foreach w,$(sort $(ALL_DEPS.$(m).ALL_DEPS)),"$(w)", )], ' \
|
||||
'"shared_libs": [$(foreach w,$(sort $(ALL_MODULES.$(m).SHARED_LIBS)),"$(w)", )], ' \
|
||||
'"static_libs": [$(foreach w,$(sort $(ALL_MODULES.$(m).STATIC_LIBS)),"$(w)", )], ' \
|
||||
'"system_shared_libs": [$(foreach w,$(sort $(ALL_MODULES.$(m).SYSTEM_SHARED_LIBS)),"$(w)", )], ' \
|
||||
'"srcs": [$(foreach w,$(sort $(ALL_MODULES.$(m).SRCS)),"$(w)", )], ' \
|
||||
'"srcjars": [$(foreach w,$(sort $(ALL_MODULES.$(m).SRCJARS)),"$(w)", )], ' \
|
||||
|
|
Loading…
Reference in a new issue