| # Copyright 2017 The Chromium 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/config/chromeos/ui_mode.gni") |
| import("//components/exo/buildflags.gni") |
| |
| assert(is_chromeos_ash) |
| |
| source_set("server") { |
| testonly = enable_weston_test |
| sources = [ |
| "wayland_server_controller.cc", |
| "wayland_server_controller.h", |
| ] |
| |
| deps = [ |
| "//ash/public/cpp", |
| "//ash/public/cpp/external_arc", |
| "//base", |
| "//components/exo", |
| "//components/exo/wayland", |
| "//skia", |
| ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| sources = [ "arc_overlay_manager_unittest.cc" ] |
| deps = [ |
| "//ash/public/cpp", |
| "//ash/public/cpp/external_arc", |
| "//components/exo", |
| "//components/exo:test_support", |
| "//testing/gtest", |
| "//ui/aura", |
| ] |
| } |