diff options
Diffstat (limited to 'rust/testing.go')
-rw-r--r-- | rust/testing.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/testing.go b/rust/testing.go index a8496d983..963a4eaf7 100644 --- a/rust/testing.go +++ b/rust/testing.go @@ -78,6 +78,7 @@ func GatherRequiredDepsForTest() string { nocrt: true, system_shared_libs: [], apex_available: ["//apex_available:platform", "//apex_available:anyapex"], + min_sdk_version: "29", } cc_library { name: "libprotobuf-cpp-full", @@ -92,9 +93,11 @@ func GatherRequiredDepsForTest() string { srcs: ["foo.rs"], no_stdlibs: true, host_supported: true, + vendor_available: true, native_coverage: false, sysroot: true, apex_available: ["//apex_available:platform", "//apex_available:anyapex"], + min_sdk_version: "29", } rust_library { name: "libtest", @@ -102,9 +105,11 @@ func GatherRequiredDepsForTest() string { srcs: ["foo.rs"], no_stdlibs: true, host_supported: true, + vendor_available: true, native_coverage: false, sysroot: true, apex_available: ["//apex_available:platform", "//apex_available:anyapex"], + min_sdk_version: "29", } rust_library { name: "libprotobuf", |