From c77f9d14045fbe96e5c541d69476a83e332091c6 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 2 Apr 2015 13:54:39 -0700 Subject: [PATCH] Add global tags properties, remove resourceDirs Add tags to the global properties, but ignore it for now. Remove resourceDirs, we don't use it. Change-Id: I1862573d3ac02e539492c8ff95bacbab3588bfc4 --- common/module.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/common/module.go b/common/module.go index 73a9a61a8..ab90adecb 100644 --- a/common/module.go +++ b/common/module.go @@ -76,9 +76,9 @@ type AndroidDynamicDependerModuleContext interface { } type commonProperties struct { - Name string - Deps []string - ResourceDirs []string + Name string + Deps []string + Tags []string // disabled: don't emit any build rules for this module Disabled bool `android:"arch_variant"` @@ -244,10 +244,6 @@ func (p *AndroidModuleBase) NoAddressSanitizer() bool { return p.noAddressSanitizer } -func (p *AndroidModuleBase) resourceDirs() []string { - return p.commonProperties.ResourceDirs -} - func (a *AndroidModuleBase) generateModuleTarget(ctx blueprint.ModuleContext) { if a != ctx.FinalModule().(AndroidModule).base() { return