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

Side by Side Diff: net/BUILD.gn

Issue 2873673002: Add unit tests for NTLMv1 portable implementation (Closed)
Patch Set: Cleanup 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 "http/http_status_code_list", 283 "http/http_status_code_list",
284 "http/http_util.cc", 284 "http/http_util.cc",
285 "http/http_util.h", 285 "http/http_util.h",
286 "http/http_vary_data.cc", 286 "http/http_vary_data.cc",
287 "http/http_vary_data.h", 287 "http/http_vary_data.h",
288 "http/ntlm.h", 288 "http/ntlm.h",
289 "http/ntlm_buffer_reader.cc", 289 "http/ntlm_buffer_reader.cc",
290 "http/ntlm_buffer_reader.h", 290 "http/ntlm_buffer_reader.h",
291 "http/ntlm_buffer_writer.cc", 291 "http/ntlm_buffer_writer.cc",
292 "http/ntlm_buffer_writer.h", 292 "http/ntlm_buffer_writer.h",
293 "http/ntlm_client.cc",
294 "http/ntlm_client.h",
asanka 2017/06/23 21:29:10 I'm guessing this and the tests would be moved to
zentaro 2017/07/05 17:57:40 Done.
293 "http/transport_security_state.cc", 295 "http/transport_security_state.cc",
294 "http/transport_security_state.h", 296 "http/transport_security_state.h",
295 "http/transport_security_state_source.h", 297 "http/transport_security_state_source.h",
296 "log/net_log.cc", 298 "log/net_log.cc",
297 "log/net_log.h", 299 "log/net_log.h",
298 "log/net_log_capture_mode.cc", 300 "log/net_log_capture_mode.cc",
299 "log/net_log_capture_mode.h", 301 "log/net_log_capture_mode.h",
300 "log/net_log_entry.cc", 302 "log/net_log_entry.cc",
301 "log/net_log_entry.h", 303 "log/net_log_entry.h",
302 "log/net_log_event_type.h", 304 "log/net_log_event_type.h",
(...skipping 4374 matching lines...) Expand 10 before | Expand all | Expand 10 after
4677 "http/http_auth_challenge_tokenizer_unittest.cc", 4679 "http/http_auth_challenge_tokenizer_unittest.cc",
4678 "http/http_auth_controller_unittest.cc", 4680 "http/http_auth_controller_unittest.cc",
4679 "http/http_auth_filter_unittest.cc", 4681 "http/http_auth_filter_unittest.cc",
4680 "http/http_auth_gssapi_posix_unittest.cc", 4682 "http/http_auth_gssapi_posix_unittest.cc",
4681 "http/http_auth_handler_basic_unittest.cc", 4683 "http/http_auth_handler_basic_unittest.cc",
4682 "http/http_auth_handler_digest_unittest.cc", 4684 "http/http_auth_handler_digest_unittest.cc",
4683 "http/http_auth_handler_factory_unittest.cc", 4685 "http/http_auth_handler_factory_unittest.cc",
4684 "http/http_auth_handler_mock.cc", 4686 "http/http_auth_handler_mock.cc",
4685 "http/http_auth_handler_mock.h", 4687 "http/http_auth_handler_mock.h",
4686 "http/http_auth_handler_negotiate_unittest.cc", 4688 "http/http_auth_handler_negotiate_unittest.cc",
4689 "http/http_auth_handler_ntlm_portable_unittest.cc",
asanka 2017/06/23 21:29:10 inside the 'test("net_unittests")' definition, add
zentaro 2017/07/05 17:57:41 Since I already added a condition for !is_win for
4687 "http/http_auth_handler_unittest.cc", 4690 "http/http_auth_handler_unittest.cc",
4688 "http/http_auth_multi_round_parse_unittest.cc", 4691 "http/http_auth_multi_round_parse_unittest.cc",
4689 "http/http_auth_preferences_unittest.cc", 4692 "http/http_auth_preferences_unittest.cc",
4690 "http/http_auth_sspi_win_unittest.cc", 4693 "http/http_auth_sspi_win_unittest.cc",
4691 "http/http_auth_unittest.cc", 4694 "http/http_auth_unittest.cc",
4692 "http/http_basic_state_unittest.cc", 4695 "http/http_basic_state_unittest.cc",
4693 "http/http_byte_range_unittest.cc", 4696 "http/http_byte_range_unittest.cc",
4694 "http/http_cache_lookup_manager_unittest.cc", 4697 "http/http_cache_lookup_manager_unittest.cc",
4695 "http/http_cache_unittest.cc", 4698 "http/http_cache_unittest.cc",
4696 "http/http_chunked_decoder_unittest.cc", 4699 "http/http_chunked_decoder_unittest.cc",
(...skipping 20 matching lines...) Expand all
4717 "http/mock_allow_http_auth_preferences.cc", 4720 "http/mock_allow_http_auth_preferences.cc",
4718 "http/mock_allow_http_auth_preferences.h", 4721 "http/mock_allow_http_auth_preferences.h",
4719 "http/mock_gssapi_library_posix.cc", 4722 "http/mock_gssapi_library_posix.cc",
4720 "http/mock_gssapi_library_posix.h", 4723 "http/mock_gssapi_library_posix.h",
4721 "http/mock_http_cache.cc", 4724 "http/mock_http_cache.cc",
4722 "http/mock_http_cache.h", 4725 "http/mock_http_cache.h",
4723 "http/mock_sspi_library_win.cc", 4726 "http/mock_sspi_library_win.cc",
4724 "http/mock_sspi_library_win.h", 4727 "http/mock_sspi_library_win.h",
4725 "http/ntlm_buffer_reader_unittest.cc", 4728 "http/ntlm_buffer_reader_unittest.cc",
4726 "http/ntlm_buffer_writer_unittest.cc", 4729 "http/ntlm_buffer_writer_unittest.cc",
4730 "http/ntlm_client_unittest.cc",
4727 "http/transport_security_persister_unittest.cc", 4731 "http/transport_security_persister_unittest.cc",
4728 "http/transport_security_state_unittest.cc", 4732 "http/transport_security_state_unittest.cc",
4729 "http/url_security_manager_unittest.cc", 4733 "http/url_security_manager_unittest.cc",
4730 "http2/decoder/decode_buffer_test.cc", 4734 "http2/decoder/decode_buffer_test.cc",
4731 "http2/decoder/decode_http2_structures_test.cc", 4735 "http2/decoder/decode_http2_structures_test.cc",
4732 "http2/decoder/frame_decoder_state_test_util.cc", 4736 "http2/decoder/frame_decoder_state_test_util.cc",
4733 "http2/decoder/frame_decoder_state_test_util.h", 4737 "http2/decoder/frame_decoder_state_test_util.h",
4734 "http2/decoder/http2_frame_decoder_listener_test_util.cc", 4738 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4735 "http2/decoder/http2_frame_decoder_listener_test_util.h", 4739 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4736 "http2/decoder/http2_frame_decoder_test.cc", 4740 "http2/decoder/http2_frame_decoder_test.cc",
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
6080 ] 6084 ]
6081 deps = [ 6085 deps = [
6082 ":net_fuzzer_test_support", 6086 ":net_fuzzer_test_support",
6083 ":test_support", 6087 ":test_support",
6084 "//base", 6088 "//base",
6085 "//net", 6089 "//net",
6086 ] 6090 ]
6087 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6091 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6088 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6092 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6089 } 6093 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_auth_handler_ntlm_portable.cc » ('j') | net/http/http_auth_handler_ntlm_portable_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698