blob: 8f1b6e511d48637dba02f4d7b843281be2e7face [file] [log] [blame] [edit]
# 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.
group("testing") {
testonly = true
public_deps = [
":formatting",
":input",
":view_ref_helper",
]
}
source_set("formatting") {
testonly = true
public = [ "formatting.h" ]
sources = [ "formatting.cc" ]
public_deps = [
"//third_party/glm",
"//zircon/system/ulib/zx",
]
}
source_set("input") {
testonly = true
public = [ "input.h" ]
sources = [ "input.cc" ]
public_deps = [
"//sdk/fidl/fuchsia.ui.input",
"//sdk/fidl/fuchsia.ui.input.accessibility",
"//third_party/glm",
]
}
source_set("view_ref_helper") {
testonly = true
public = [ "view_ref_helper.h" ]
sources = [ "view_ref_helper.cc" ]
public_deps = [
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/syslog/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/ui/a11y/lib/util",
]
}