# Copyright 2018 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("//services/service_manager/public/cpp/service.gni")
import("//services/service_manager/public/service_manifest.gni")

service("test_ws") {
  testonly = true

  sources = [
    "test_gpu_interface_provider.cc",
    "test_gpu_interface_provider.h",
    "test_ws.cc",
  ]

  deps = [
    "//base",
    "//services/service_manager/public/cpp",
    "//services/service_manager/public/mojom",
    "//services/ui/public/cpp",
    "//services/ui/public/interfaces",
    "//services/ui/ws2:lib",
    "//ui/aura",
    "//ui/aura:test_support",
    "//ui/compositor:test_support",
    "//ui/gl:test_support",
  ]
}

service_manifest("manifest") {
  name = "test_ws"
  source = "manifest.json"
  packaged_services = [ "//services/ui:manifest" ]
}
