mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
32 lines
835 B
Plaintext
32 lines
835 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/common:common_base",
|
||
|
"//mojo/edk/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" ]
|
||
|
}
|
||
|
}
|