aboutsummaryrefslogtreecommitdiff
path: root/aconfig/codegen/cc_aconfig_library_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'aconfig/codegen/cc_aconfig_library_test.go')
-rw-r--r--aconfig/codegen/cc_aconfig_library_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/aconfig/codegen/cc_aconfig_library_test.go b/aconfig/codegen/cc_aconfig_library_test.go
index 5cb3f8b33..3ea77394a 100644
--- a/aconfig/codegen/cc_aconfig_library_test.go
+++ b/aconfig/codegen/cc_aconfig_library_test.go
@@ -20,8 +20,6 @@ import (
"android/soong/android"
"android/soong/cc"
-
- "github.com/google/blueprint"
)
var ccCodegenModeTestData = []struct {
@@ -214,7 +212,7 @@ func TestAndroidMkCcLibrary(t *testing.T) {
entry := android.AndroidMkInfoForTest(t, result.TestContext, module).PrimaryInfo
makeVar := entry.EntryMap["LOCAL_ACONFIG_FILES"]
- android.EnsureListContainsSuffix(t, makeVar, "my_aconfig_declarations_foo/intermediate.pb")
+ android.EnsureListContainsSuffix(t, makeVar, "my_aconfig_declarations_foo/aconfig-cache.pb")
}
func TestForceReadOnly(t *testing.T) {
@@ -256,7 +254,7 @@ func TestForceReadOnly(t *testing.T) {
module := result.ModuleForTests(t, "my_cc_aconfig_library", "android_arm64_armv8-a_shared").Module()
dependOnReadLib := false
- result.VisitDirectDeps(module, func(dep blueprint.Module) {
+ result.VisitDirectDeps(module, func(dep android.Module) {
if dep.Name() == libAconfigStorageReadApiCcDep {
dependOnReadLib = true
}