mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
35 lines
721 B
Plaintext
35 lines
721 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.
|
|
|
|
# See //content/BUILD.gn for how this works.
|
|
group("network") {
|
|
if (is_component_build) {
|
|
public_deps = [
|
|
"//content",
|
|
]
|
|
} else {
|
|
public_deps = [
|
|
":network_sources",
|
|
]
|
|
}
|
|
}
|
|
|
|
target("source_set", "network_sources") {
|
|
visibility = [ "//content/*" ]
|
|
|
|
configs += [ "//content:content_implementation" ]
|
|
|
|
sources = [
|
|
"network_service.h",
|
|
"url_request_context_builder_mojo.cc",
|
|
"url_request_context_builder_mojo.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//content:export",
|
|
"//content/common:mojo_bindings",
|
|
]
|
|
}
|