Fix android_test install path.
Test: m nothing + diff soong mk and ninja files. Bug: 140795853 Change-Id: I3667eac951dea7e447cf73219ff89199fca9ed63
This commit is contained in:
@@ -154,6 +154,7 @@ type ModuleContext interface {
|
||||
CheckbuildFile(srcPath Path)
|
||||
|
||||
InstallInData() bool
|
||||
InstallInTestcases() bool
|
||||
InstallInSanitizerDir() bool
|
||||
InstallInRecovery() bool
|
||||
InstallBypassMake() bool
|
||||
@@ -192,6 +193,7 @@ type Module interface {
|
||||
Enabled() bool
|
||||
Target() Target
|
||||
InstallInData() bool
|
||||
InstallInTestcases() bool
|
||||
InstallInSanitizerDir() bool
|
||||
InstallInRecovery() bool
|
||||
InstallBypassMake() bool
|
||||
@@ -832,6 +834,10 @@ func (m *ModuleBase) InstallInData() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *ModuleBase) InstallInTestcases() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *ModuleBase) InstallInSanitizerDir() bool {
|
||||
return false
|
||||
}
|
||||
@@ -1504,6 +1510,10 @@ func (m *moduleContext) InstallInData() bool {
|
||||
return m.module.InstallInData()
|
||||
}
|
||||
|
||||
func (m *moduleContext) InstallInTestcases() bool {
|
||||
return m.module.InstallInTestcases()
|
||||
}
|
||||
|
||||
func (m *moduleContext) InstallInSanitizerDir() bool {
|
||||
return m.module.InstallInSanitizerDir()
|
||||
}
|
||||
|
Reference in New Issue
Block a user