diff options
author | 2024-09-11 11:35:46 -0700 | |
---|---|---|
committer | 2024-09-11 11:35:46 -0700 | |
commit | e8a8783154dc31f3e09e3bb98a8b11233358097d (patch) | |
tree | f19de4ab4630cf252c06573c9fad7c20b3703b1b /android/androidmk.go | |
parent | 28b806c9eb56698c9484c1fb6071bd091c3aa20e (diff) |
Rename ConfigAndErrorContext to ConfigurableEvaluatorContext
I'm going to be adding some methods to this interface, give it
a name based on how it's going to be used, not based on what methods
it contains.
Bug: 323382414
Test: m nothing --no-skip-soong-tests
Change-Id: I9bba04ba756c4dbe00625e2d04af81e78a11cae9
Diffstat (limited to 'android/androidmk.go')
-rw-r--r-- | android/androidmk.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/androidmk.go b/android/androidmk.go index fc628cb34..98f8bb111 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -983,11 +983,11 @@ func translateAndroidMkEntriesModule(ctx SingletonContext, w io.Writer, moduleIn return nil } -func ShouldSkipAndroidMkProcessing(ctx ConfigAndErrorContext, module Module) bool { +func ShouldSkipAndroidMkProcessing(ctx ConfigurableEvaluatorContext, module Module) bool { return shouldSkipAndroidMkProcessing(ctx, module.base()) } -func shouldSkipAndroidMkProcessing(ctx ConfigAndErrorContext, module *ModuleBase) bool { +func shouldSkipAndroidMkProcessing(ctx ConfigurableEvaluatorContext, module *ModuleBase) bool { if !module.commonProperties.NamespaceExportedToMake { // TODO(jeffrygaston) do we want to validate that there are no modules being // exported to Kati that depend on this module? |