blob: 8efcc4f0197255c8d99cc24d22ba9aec2449b9cb [file] [log] [blame]
# 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",
"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 = [
"network_struct_traits_unittest.cc",
]
deps = [
":test_interfaces",
"//base",
"//mojo/public/cpp/bindings",
"//net",
"//testing/gtest",
]
}