Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: net/BUILD.gn

Issue 2873673002: Add unit tests for NTLMv1 portable implementation (Closed)
Patch Set: Rebase Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/http/des.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 5c5ad02d25c4e9e33beac2a95c11d2a4018463d0..0b203069d6a1dd15be8266d5365088cbef0b7bdf 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -793,8 +793,6 @@ component("net") {
"http/bidirectional_stream_request_info.h",
"http/broken_alternative_services.cc",
"http/broken_alternative_services.h",
- "http/des.cc",
- "http/des.h",
"http/failing_http_transaction_factory.cc",
"http/failing_http_transaction_factory.h",
"http/http_auth.cc",
@@ -883,8 +881,6 @@ component("net") {
"http/http_transaction.h",
"http/http_transaction_factory.h",
"http/http_version.h",
- "http/md4.cc",
- "http/md4.h",
"http/partial_data.cc",
"http/partial_data.h",
"http/proxy_client_socket.cc",
@@ -1022,6 +1018,12 @@ component("net") {
"nqe/throughput_analyzer.cc",
"nqe/throughput_analyzer.h",
"nqe/weighted_observation.h",
+ "ntlm/des.cc",
+ "ntlm/des.h",
+ "ntlm/md4.cc",
+ "ntlm/md4.h",
+ "ntlm/ntlm.cc",
+ "ntlm/ntlm.h",
"ntlm/ntlm_buffer_reader.cc",
"ntlm/ntlm_buffer_reader.h",
"ntlm/ntlm_buffer_writer.cc",
@@ -1770,6 +1772,12 @@ component("net") {
if (is_win) {
sources -= [
+ "ntlm/des.cc",
+ "ntlm/des.h",
+ "ntlm/md4.cc",
+ "ntlm/md4.h",
+ "ntlm/ntlm.cc",
+ "ntlm/ntlm.h",
"ntlm/ntlm_buffer_reader.cc",
"ntlm/ntlm_buffer_reader.h",
"ntlm/ntlm_buffer_writer.cc",
@@ -4678,7 +4686,6 @@ test("net_unittests") {
"ftp/ftp_util_unittest.cc",
"http/bidirectional_stream_unittest.cc",
"http/broken_alternative_services_unittest.cc",
- "http/des_unittest.cc",
"http/http_auth_cache_unittest.cc",
"http/http_auth_challenge_tokenizer_unittest.cc",
"http/http_auth_controller_unittest.cc",
@@ -4690,6 +4697,7 @@ test("net_unittests") {
"http/http_auth_handler_mock.cc",
"http/http_auth_handler_mock.h",
"http/http_auth_handler_negotiate_unittest.cc",
+ "http/http_auth_handler_ntlm_portable_unittest.cc",
"http/http_auth_handler_unittest.cc",
"http/http_auth_multi_round_parse_unittest.cc",
"http/http_auth_preferences_unittest.cc",
@@ -4817,8 +4825,11 @@ test("net_unittests") {
"nqe/observation_buffer_unittest.cc",
"nqe/socket_watcher_unittest.cc",
"nqe/throughput_analyzer_unittest.cc",
+ "ntlm/des_unittest.cc",
"ntlm/ntlm_buffer_reader_unittest.cc",
"ntlm/ntlm_buffer_writer_unittest.cc",
+ "ntlm/ntlm_test_data.h",
+ "ntlm/ntlm_unittest.cc",
"proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc",
"proxy/dhcp_proxy_script_fetcher_factory_unittest.cc",
"proxy/dhcp_proxy_script_fetcher_win_unittest.cc",
@@ -5234,8 +5245,12 @@ test("net_unittests") {
if (is_win) {
sources -= [
+ "http/http_auth_handler_ntlm_portable_unittest.cc",
+ "ntlm/des_unittest.cc",
"ntlm/ntlm_buffer_reader_unittest.cc",
"ntlm/ntlm_buffer_writer_unittest.cc",
+ "ntlm/ntlm_test_data.h",
+ "ntlm/ntlm_unittest.cc",
]
}
« no previous file with comments | « no previous file | net/http/des.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698