| # 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. |
| |
| source_set("configuration") { |
| sources = [ |
| "color_transform_manager.cc", |
| "color_transform_manager.h", |
| ] |
| |
| public_deps = [ |
| "//sdk/fidl/fuchsia.accessibility", |
| "//sdk/fidl/fuchsia.math", |
| "//sdk/lib/fidl/cpp", |
| "//src/ui/a11y/lib/util", |
| ] |
| |
| deps = [ |
| "//sdk/fidl/fuchsia.ui.gfx", |
| "//sdk/fidl/fuchsia.ui.input", |
| "//sdk/fidl/fuchsia.ui.views", |
| "//sdk/lib/sys/cpp", |
| "//sdk/lib/syslog/cpp", |
| "//src/lib/fxl", |
| "//src/ui/scenic/lib/gfx", |
| ] |
| |
| # TODO(fxbug.dev/46525): Fix the leaks and remove this. |
| deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ] |
| } |