| # 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("//src/sys/build/components.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", |
| ] |
| } |
| |
| fuchsia_unittest_package("scenic_cpp_tests") { |
| deps = [ ":scenic_cpp_unittests" ] |
| manifest = "meta/scenic_cpp_unittests.cmx" |
| } |