mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-01 09:46:09 +03:00
71 lines
1.3 KiB
Plaintext
71 lines
1.3 KiB
Plaintext
|
# Copyright 2018 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.
|
||
|
|
||
|
source_set("http_status_codes") {
|
||
|
sources = [
|
||
|
"http_status_codes.h",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("http") {
|
||
|
sources = [
|
||
|
"error_utils.cc",
|
||
|
"error_utils.h",
|
||
|
"http_agent.h",
|
||
|
"http_agent_factory.cc",
|
||
|
"http_agent_factory.h",
|
||
|
"http_agent_impl.cc",
|
||
|
"http_agent_impl.h",
|
||
|
"http_response.h",
|
||
|
"internet_helpers.cc",
|
||
|
"internet_helpers.h",
|
||
|
"user_agent.cc",
|
||
|
"user_agent.h",
|
||
|
]
|
||
|
|
||
|
libs = [ "Winhttp.lib" ]
|
||
|
|
||
|
deps = [
|
||
|
"//base:base",
|
||
|
"//net/traffic_annotation",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unittest_sources") {
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"error_utils_unittest.cc",
|
||
|
"internet_helpers_unittest.cc",
|
||
|
"internet_unittest_helpers.cc",
|
||
|
"internet_unittest_helpers.h",
|
||
|
"user_agent_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":http",
|
||
|
"//base:base",
|
||
|
"//base/test:test_support",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("mock_http_agent_factory") {
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"mock_http_agent_factory.cc",
|
||
|
"mock_http_agent_factory.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":http",
|
||
|
":http_status_codes",
|
||
|
"//base",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|