commit | 3428942395e5eef3616c5b8bebf875bfa5f6e8f4 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Tue Oct 29 20:05:24 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Oct 29 20:05:24 2024 +0000 |
tree | 62159ffc18cc5c53160789ed90b6b87e02b49193 | |
parent | 60bee2bad8b15af43aef5aba4cb309c45fcb6a83 [diff] | |
parent | f6742afe1bab58a3c8333a96405297b62c173398 [diff] |
Merge "Add objectLinker to cmake_snapshot supported module types" into main
diff --git a/cc/cmake_snapshot.go b/cc/cmake_snapshot.go index 61fa46d..790a865 100644 --- a/cc/cmake_snapshot.go +++ b/cc/cmake_snapshot.go
@@ -533,6 +533,8 @@ return "test" case *benchmarkDecorator: return "test" + case *objectLinker: + return "object" } panic(fmt.Sprintf("Unexpected module type: %T", m.linker)) }