mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
31 lines
809 B
Plaintext
31 lines
809 B
Plaintext
# Copyright 2014 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("//mojo/public/tools/bindings/mojom.gni")
|
|
import("//testing/test.gni")
|
|
|
|
source_set("standalone") {
|
|
sources = [
|
|
"context.cc",
|
|
"context.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/third_party/dynamic_annotations",
|
|
"//mojo/public/cpp/system",
|
|
"//services/catalog:lib",
|
|
"//services/service_manager",
|
|
"//services/service_manager/public/cpp",
|
|
"//services/service_manager/runner/common",
|
|
"//services/service_manager/runner/host:lib",
|
|
"//url",
|
|
]
|
|
|
|
if (!is_ios) {
|
|
deps += [ "//services/service_manager/public/cpp/standalone_service" ]
|
|
}
|
|
}
|