| # Copyright 2017 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| assert(is_chromeos) |
| |
| source_set("server") { |
| sources = [ |
| "wayland_server_controller.cc", |
| "wayland_server_controller.h", |
| "wayland_server_handle.cc", |
| "wayland_server_handle.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//components/exo", |
| "//components/exo/wayland", |
| "//skia", |
| ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| sources = [ |
| "arc_overlay_manager_unittest.cc", |
| "wayland_server_controller_unittest.cc", |
| ] |
| |
| deps = [ |
| ":server", |
| "//ash:test_support", |
| "//base/test:test_support", |
| "//chromeos/ash/experiences/arc", |
| "//components/exo", |
| "//components/exo:test_support", |
| "//components/exo/wayland:test_support", |
| "//testing/gmock", |
| "//testing/gtest", |
| "//ui/aura", |
| ] |
| } |