From 58d96b150e5486d103299cb9dcfec0d1343b5f80 Mon Sep 17 00:00:00 2001 From: John Muir Date: Wed, 11 Apr 2018 11:42:26 -0700 Subject: [PATCH] notice_files: Disable NOTICE files for FAKE modules. Currently the build system will automatically attribute a NOTICE file with the target of $(BUILD_PHONY_PACKAGE). This shouldn't be the case. Disable notice file inclusion for fake targets so that the /fake_packages/blah_blah-timestamp paths don't show up in NOTICE.xml.gz. Bug: 77910458 Test: NOTICE files are not attributed to fake targets. Change-Id: Ia942cac41b750efbd5a23d896d85ac0820ee8b4e --- core/notice_files.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/notice_files.mk b/core/notice_files.mk index 383d73c21..9dce2b35f 100644 --- a/core/notice_files.mk +++ b/core/notice_files.mk @@ -14,6 +14,11 @@ ifeq ($(LOCAL_MODULE_CLASS),GYP) notice_file := endif +ifeq ($(LOCAL_MODULE_CLASS),FAKE) + # We ignore NOTICE files for modules of type FAKE. + notice_file := +endif + # Soong generates stub libraries that don't need NOTICE files ifdef LOCAL_NO_NOTICE_FILE ifneq ($(LOCAL_MODULE_MAKEFILE),$(SOONG_ANDROID_MK))