Merge "Copy generated $(SOONG_OUT_DIR)/module_bp_java_deps.json file to dist when SOONG_COLLECT_JAVA_DEPS flag is set."

This commit is contained in:
Yifeng Zeng 2020-09-29 04:06:36 +00:00 committed by Gerrit Code Review
commit 97a498b177
1 changed files with 4 additions and 0 deletions

View File

@ -1639,6 +1639,10 @@ droidcore: $(filter $(HOST_OUT_ROOT)/%,$(modules_to_install)) \
# dist_files only for putting your library into the dist directory with a full build.
.PHONY: dist_files
ifeq ($(SOONG_COLLECT_JAVA_DEPS), true)
$(call dist-for-goals, dist_files, $(SOONG_OUT_DIR)/module_bp_java_deps.json)
endif
.PHONY: apps_only
ifneq ($(TARGET_BUILD_APPS),)
# If this build is just for apps, only build apps and not the full system by default.