mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
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("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
static_library("cpp") {
|
|
sources = [
|
|
"cors_error_status.cc",
|
|
"cors_error_status.h",
|
|
"mutable_network_traffic_annotation_tag_struct_traits.h",
|
|
"mutable_partial_network_traffic_annotation_tag_struct_traits.h",
|
|
"net_adapters.cc",
|
|
"net_adapters.h",
|
|
"url_loader_completion_status.cc",
|
|
"url_loader_completion_status.h",
|
|
]
|
|
|
|
public_deps = [
|
|
"//services/network/public/interfaces",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mojo/common",
|
|
"//net",
|
|
]
|
|
}
|
|
|
|
mojom("test_interfaces") {
|
|
sources = [
|
|
"network_traits_test_service.mojom",
|
|
]
|
|
public_deps = [
|
|
"//services/network/public/interfaces",
|
|
]
|
|
}
|
|
|
|
source_set("tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"mutable_network_traffic_annotation_tag_struct_traits_unittest.cc",
|
|
"mutable_partial_network_traffic_annotation_tag_struct_traits_unittest.cc",
|
|
"network_struct_traits_unittest.cc",
|
|
]
|
|
deps = [
|
|
":test_interfaces",
|
|
"//base",
|
|
"//mojo/public/cpp/bindings",
|
|
"//net",
|
|
"//testing/gtest",
|
|
]
|
|
}
|