blob: 2989c9126c2e55c0e12ba8fdecff8380cb615612 [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/test.gni")
import("//build/test/test_package.gni")
test("scenic_cpp_unittests") {
sources = [
"commands_sizing_test.cc",
"session_test.cc",
"view_ref_pair_test.cc",
"view_token_pair_test.cc",
]
deps = [
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fxl/test:gtest_main",
]
}
test_package("scenic_cpp_tests") {
deps = [ ":scenic_cpp_unittests" ]
tests = [
{
name = "scenic_cpp_unittests"
},
]
}