mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
|
# 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_drag_drop_client.cc",
|
||
|
"test_drag_drop_client.h",
|
||
|
"test_gpu_interface_provider.cc",
|
||
|
"test_gpu_interface_provider.h",
|
||
|
"test_ws.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/discardable_memory/service",
|
||
|
"//services/service_manager/public/cpp",
|
||
|
"//services/service_manager/public/mojom",
|
||
|
"//services/ws:lib",
|
||
|
"//services/ws/gpu_host",
|
||
|
"//services/ws/public/cpp",
|
||
|
"//services/ws/public/mojom",
|
||
|
"//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/ws:manifest" ]
|
||
|
}
|