diff options
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/android/module.go b/android/module.go index ce6c78d35..b73f449fc 100644 --- a/android/module.go +++ b/android/module.go @@ -380,7 +380,6 @@ type BaseModuleContext interface { Device() bool Darwin() bool Windows() bool - Debug() bool PrimaryArch() bool } @@ -2675,7 +2674,6 @@ type baseModuleContext struct { target Target multiTargets []Target targetPrimary bool - debug bool walkPath []Module tagPath []blueprint.DependencyTag @@ -3306,10 +3304,6 @@ func (b *baseModuleContext) Windows() bool { return b.os == Windows } -func (b *baseModuleContext) Debug() bool { - return b.debug -} - func (b *baseModuleContext) PrimaryArch() bool { if len(b.config.Targets[b.target.Os]) <= 1 { return true |