diff options
author | 2024-11-08 23:11:47 +0000 | |
---|---|---|
committer | 2024-11-12 03:48:18 +0000 | |
commit | d3228acdc8658e7bd9ef9662c425822ae55fdebf (patch) | |
tree | e44aabb46fe66af9168e07d91792d7dd6a724e04 /android/module_test.go | |
parent | 48a943f674de35fb78e1e8d7f36b823798c96233 (diff) |
Change GetModuleFromPathDep to use ModuleProxy.
Bug: 377723687
Test: Compare ninja and mk files generated.
Change-Id: I428b0965b217adb20a792ebde88374e0c6fae9d6
Diffstat (limited to 'android/module_test.go')
-rw-r--r-- | android/module_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/module_test.go b/android/module_test.go index d76d9b329..d5bf94137 100644 --- a/android/module_test.go +++ b/android/module_test.go @@ -998,6 +998,10 @@ func (p *pathContextAddMissingDependenciesWrapper) GetOutputFiles() OutputFilesI return OutputFilesInfo{} } +func (p *pathContextAddMissingDependenciesWrapper) EqualModules(m1, m2 Module) bool { + return m1 == m2 +} + func TestOutputFileForModule(t *testing.T) { testcases := []struct { name string |