mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 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.
|
|
|
|
source_set("http_server") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//net",
|
|
"//net:test_support",
|
|
"//url",
|
|
]
|
|
|
|
sources = [
|
|
"blank_page_response_provider.h",
|
|
"blank_page_response_provider.mm",
|
|
"data_response_provider.h",
|
|
"data_response_provider.mm",
|
|
"delayed_response_provider.h",
|
|
"delayed_response_provider.mm",
|
|
"error_page_response_provider.h",
|
|
"error_page_response_provider.mm",
|
|
"html_response_provider.h",
|
|
"html_response_provider.mm",
|
|
"html_response_provider_impl.h",
|
|
"html_response_provider_impl.mm",
|
|
"http_auth_response_provider.h",
|
|
"http_auth_response_provider.mm",
|
|
"http_server.h",
|
|
"http_server.mm",
|
|
"http_server_util.h",
|
|
"http_server_util.mm",
|
|
"response_provider.h",
|
|
"response_provider.mm",
|
|
"string_response_provider.h",
|
|
"string_response_provider.mm",
|
|
]
|
|
}
|