Merge "Add $(SOONG_OUT_DIR)/ndk/% to artifact whitelist"

am: 9779c57cd0

Change-Id: I1a33e0787c8aab6618925e53ae70749b1564baa4
This commit is contained in:
Logan Chien 2019-01-22 23:27:25 -08:00 committed by android-build-merger
commit d7881a85f9
1 changed files with 2 additions and 2 deletions

View File

@ -1119,8 +1119,8 @@ ifdef FULL_BUILD
# Verify the artifact path requirements made by included products.
is_asan := $(if $(filter address,$(SANITIZE_TARGET)),true)
ifneq (true,$(or $(is_asan),$(DISABLE_ARTIFACT_PATH_REQUIREMENTS)))
# Fakes don't get installed, and host files are irrelevant.
static_whitelist_patterns := $(TARGET_OUT_FAKE)/% $(HOST_OUT)/%
# Fakes don't get installed, host files are irrelevant, and NDK stubs aren't installed to device.
static_whitelist_patterns := $(TARGET_OUT_FAKE)/% $(HOST_OUT)/% $(SOONG_OUT_DIR)/ndk/%
# RROs become REQUIRED by the source module, but are always placed on the vendor partition.
static_whitelist_patterns += %__auto_generated_rro.apk
ifeq (true,$(BOARD_USES_SYSTEM_OTHER_ODEX))