blob: ef280e948da6a1942fb8ac7ebaadce232585ac62 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/components.gni")
import("//build/test.gni")
test("vmo") {
output_name = "vmo-test"
sources = [
"bench.cc",
"vmo.cc",
]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/pretty",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("vmo-test-pkg") {
package_name = "vmo-test"
deps = [ ":vmo" ]
}
group("tests") {
testonly = true
deps = [ ":vmo-test-pkg" ]
}