mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
31 lines
701 B
Plaintext
31 lines
701 B
Plaintext
# 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("//services/service_manager/public/cpp/service.gni")
|
|
import("//services/service_manager/public/service_manifest.gni")
|
|
|
|
source_set("lib") {
|
|
sources = [
|
|
"shell_util_win_impl.cc",
|
|
"shell_util_win_impl.h",
|
|
"util_win_service.cc",
|
|
"util_win_service.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mojo/public/cpp/bindings",
|
|
]
|
|
|
|
public_deps = [
|
|
"//chrome/services/util_win/public/mojom",
|
|
"//services/service_manager/public/cpp",
|
|
]
|
|
}
|
|
|
|
service_manifest("manifest") {
|
|
name = "util_win"
|
|
source = "manifest.json"
|
|
}
|