| # 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/components.gni") |
| import("//build/test.gni") |
| |
| source_set("utils") { |
| sources = [ |
| "dispatcher_holder.h", |
| "helpers.cc", |
| "helpers.h", |
| "math.cc", |
| "math.h", |
| ] |
| |
| public_deps = [ |
| "//sdk/fidl/fuchsia.sysmem", |
| "//sdk/fidl/fuchsia.ui.scenic", |
| "//src/ui/lib/glm_workaround:glm_workaround", |
| "//zircon/public/lib/async-cpp", |
| ] |
| |
| deps = [ |
| "//sdk/lib/fdio", |
| "//sdk/lib/fidl/cpp:cpp_base", |
| "//src/lib/fsl", |
| "//src/lib/fxl", |
| "//zircon/public/lib/zx", |
| ] |
| } |