blob: fd9e65fbd2a36b5122bdb3612e4543ad1f2f81de [file] [log] [blame]
# Copyright 2020 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 = "flatland_engine_unittests"
testonly = true
sources = [
"common.cc",
"common.h",
"display_compositor_unittest.cc",
"mock_display_controller.h",
"release_fence_manager_unittest.cc",
]
deps = [
"//garnet/public/lib/gtest:gtest",
"//src/lib/fsl:fsl",
"//src/lib/fxl/test:gtest_main",
"//src/ui/scenic/lib/display/tests:mocks",
"//src/ui/scenic/lib/flatland/engine",
"//src/ui/scenic/lib/scheduling:frame_scheduler",
"//src/ui/scenic/lib/utils",
"//third_party/googletest:gmock",
]
}