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
This commit is contained in:
Torne (Richard Coles) 2012-10-25 15:49:39 +01:00
parent adf4d478d9
commit 63afdc12d5
1 changed files with 2 additions and 2 deletions

View File

@ -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