blob: 141682c64c0bef469d5bbfb01b7769d3e899803c [file] [log] [blame]
# Copyright 2021 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.
group("tests") {
testonly = true
public_deps = [ ":unittests" ]
}
executable("unittests") {
output_name = "allocation_unittests"
testonly = true
sources = [ "allocator_unittest.cc" ]
deps = [
"//sdk/lib/sys/cpp/testing:unit",
"//src/lib/fsl:fsl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture:gtest",
"//src/ui/scenic/lib/allocation",
"//src/ui/scenic/lib/utils",
"//third_party/googletest:gmock",
]
}