blob: 646e5a4e072b1f7b10bfede09c96f1bf543e680b [file] [log] [blame]
# Copyright 2016 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.
executable("present_view") {
sources = [ "main.cc" ]
deps = [
":lib",
"//src/lib/fxl",
"//zircon/public/lib/trace-provider-with-fdio",
]
}
group("tests") {
testonly = true
deps = [ "tests" ]
}
source_set("lib") {
sources = [
"present_view.cc",
"present_view.h",
]
public_deps = [
"//sdk/fidl/fuchsia.sys",
"//sdk/fidl/fuchsia.ui.app",
"//sdk/fidl/fuchsia.ui.policy",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/sys/cpp",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
]
deps = [
"//sdk/lib/fidl/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fxl",
]
}