blob: 2c36a625a2563cf54bb8bd7285e23ca6bc88f945 [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
kernel_version = "5.10"
kernel_stem = "kernel_prebuilts-" + kernel_version
cc_test {
// ".64" suffix is to work around cts-unit-test which is demanding that all
// executables in CTS should have both 32 and 64 ABIs.
name: "VirtualizationTestCases.64",
test_suites: [
"general-tests",
],
srcs: [
"common.cc",
"vsock_test.cc",
],
local_include_dirs: ["include"],
compile_multilib: "64",
data: [
":virt_test_kernel",
":virt_test_initramfs",
],
static_libs: [
// The existence of the library in the system partition is not guaranteed.
// Let's have our own copy of it.
"android.system.virtualizationservice-cpp",
"PlatformProperties",
],
shared_libs: [
"libbase",
"libbinder",
"liblog",
"libutils",
],
}
cc_defaults {
name: "virt_test_guest_binary",
static_libs: [
"libbase",
"liblog",
],
static_executable: true,
installable: false,
}
cc_binary {
name: "virt_test_vsock_guest",
srcs: ["vsock_guest.cc"],
stem: "vsock_client",
defaults: ["virt_test_guest_binary"],
}
prebuilt_etc {
name: "virt_test_kernel",
src: "nofile",
arch: {
arm64: {
src: ":" + kernel_stem + "-arm64",
},
x86_64: {
src: ":" + kernel_stem + "-x86_64",
},
},
}
android_filesystem {
name: "virt_test_initramfs",
deps: [
"microdroid_kernel_modules",
"virt_test_guest_init",
"virt_test_vsock_guest",
],
type: "cpio",
}
genrule {
name: "test-payload-metadata",
tools: ["mk_payload"],
cmd: "$(location mk_payload) --metadata-only $(in) $(out)",
srcs: ["test-payload-metadata-config.json"],
out: ["test-payload-metadata.img"],
}