diff options
Diffstat (limited to 'rust/testing.go')
-rw-r--r-- | rust/testing.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/testing.go b/rust/testing.go index a7cbf54d8..72f87e136 100644 --- a/rust/testing.go +++ b/rust/testing.go @@ -135,6 +135,9 @@ func GatherRequiredDepsForTest() string { apex_available: ["//apex_available:platform", "//apex_available:anyapex"], min_sdk_version: "29", vendor_available: true, + llndk: { + symbol_file: "liblog.map.txt", + }, } cc_library { name: "libprotobuf-cpp-full", @@ -245,4 +248,5 @@ func registerRequiredBuildComponentsForTest(ctx android.RegistrationContext) { ctx.BottomUp("rust_begin", BeginMutator).Parallel() }) ctx.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton) + registerRustSnapshotModules(ctx) } |