mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
28 lines
661 B
Plaintext
28 lines
661 B
Plaintext
# Copyright 2016 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.
|
|
|
|
group("background") {
|
|
testonly = true
|
|
deps = [
|
|
":lib",
|
|
]
|
|
}
|
|
|
|
source_set("lib") {
|
|
sources = [
|
|
"background_service_manager.cc",
|
|
"background_service_manager.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//services/catalog:constants",
|
|
"//services/catalog:lib",
|
|
"//services/service_manager",
|
|
"//services/service_manager/public/cpp",
|
|
"//services/service_manager/runner:init",
|
|
"//services/service_manager/runner/host:lib",
|
|
"//services/service_manager/standalone",
|
|
]
|
|
}
|