From 63afdc12d50db1a96ac6d7e8ef6d9548cf95a420 Mon Sep 17 00:00:00 2001 From: "Torne (Richard Coles)" Date: Thu, 25 Oct 2012 15:49:39 +0100 Subject: [PATCH] Use GYP instead of NONE as the module class for gyp. The Chromium makefile generator used to use module class NONE for the meta-targets in the gyp files; this was changed to GYP in order to make it more obvious where they come from in the build. Update the build system's handling of NOTICE files to reflect this change. Change-Id: Iff7d4487f3024ec83db0c2a896ec0caf8fb18b24 --- core/notice_files.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/notice_files.mk b/core/notice_files.mk index ee503946a..2840e60f0 100644 --- a/core/notice_files.mk +++ b/core/notice_files.mk @@ -4,8 +4,8 @@ notice_file:=$(strip $(wildcard $(LOCAL_PATH)/NOTICE)) -ifeq ($(LOCAL_MODULE_CLASS),NONE) - # We ignore NOTICE files for modules of type NONE. +ifeq ($(LOCAL_MODULE_CLASS),GYP) + # We ignore NOTICE files for modules of type GYP. notice_file := endif