diff options
author | 2021-11-11 18:59:15 -0800 | |
---|---|---|
committer | 2021-12-15 15:22:53 -0800 | |
commit | c68db4b305b9186d8d9b4e83b298a33fa810d06b (patch) | |
tree | d8a61ff4d4694bedd12cbb3ef100f974b24e08e3 /android/module_test.go | |
parent | e23a32bdc5dc07bea8d602662b2b0020159a6742 (diff) |
Remove InstallBypassMake and ToMakePath
InstallBypassMake and ToMakePath are obsolete, remove them.
Bug: 204136549
Test: m checkbuild
Change-Id: Ie5a6f7254b3d317ed6039e114ed6aec35e1ce273
Diffstat (limited to 'android/module_test.go')
-rw-r--r-- | android/module_test.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/android/module_test.go b/android/module_test.go index 8607a8d34..d9e2c87a4 100644 --- a/android/module_test.go +++ b/android/module_test.go @@ -204,10 +204,6 @@ type depsModule struct { } } -func (m *depsModule) InstallBypassMake() bool { - return true -} - func (m *depsModule) GenerateAndroidBuildActions(ctx ModuleContext) { outputFile := PathForModuleOut(ctx, ctx.ModuleName()) ctx.Build(pctx, BuildParams{ @@ -450,7 +446,7 @@ func TestInstall(t *testing.T) { assertOrderOnlys(symlinkRule("foo")) } -func TestInstallBypassMake(t *testing.T) { +func TestInstallKatiEnabled(t *testing.T) { if runtime.GOOS != "linux" { t.Skip("requires linux") } |