aboutsummaryrefslogtreecommitdiff
path: root/cc/library_headers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cc/library_headers_test.go')
-rw-r--r--cc/library_headers_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cc/library_headers_test.go b/cc/library_headers_test.go
index 88ccd4303..73e599672 100644
--- a/cc/library_headers_test.go
+++ b/cc/library_headers_test.go
@@ -19,8 +19,6 @@ import (
"testing"
"android/soong/android"
-
- "github.com/google/blueprint"
)
func TestLibraryHeaders(t *testing.T) {
@@ -85,7 +83,7 @@ func TestPrebuiltLibraryHeadersPreferred(t *testing.T) {
prebuiltDep := ctx.ModuleForTests(t, "prebuilt_headers", "android_arm64_armv8-a")
hasSourceDep := false
hasPrebuiltDep := false
- ctx.VisitDirectDeps(lib.Module(), func(dep blueprint.Module) {
+ ctx.VisitDirectDeps(lib.Module(), func(dep android.Module) {
if dep == sourceDep.Module() {
hasSourceDep = true
}