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

Side by Side Diff: net/BUILD.gn

Issue 2879353002: Add a buffer reader/writer for NTLM. (Closed)
Patch Set: Add a buffer reader/writer for NTLM. Created 3 years, 6 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
« no previous file with comments | « no previous file | net/http/ntlm_buffer_reader.h » ('j') | net/http/ntlm_buffer_reader.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 "http/http_response_headers.h", 278 "http/http_response_headers.h",
279 "http/http_response_info.cc", 279 "http/http_response_info.cc",
280 "http/http_response_info.h", 280 "http/http_response_info.h",
281 "http/http_security_headers.cc", 281 "http/http_security_headers.cc",
282 "http/http_security_headers.h", 282 "http/http_security_headers.h",
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_buffer_reader.cc",
289 "http/ntlm_buffer_reader.h",
290 "http/ntlm_buffer_writer.cc",
291 "http/ntlm_buffer_writer.h",
292 "http/ntlm_client.cc",
293 "http/ntlm_client.h",
294 "http/ntlm_message.cc",
295 "http/ntlm_message.h",
288 "http/transport_security_state.cc", 296 "http/transport_security_state.cc",
289 "http/transport_security_state.h", 297 "http/transport_security_state.h",
290 "http/transport_security_state_source.h", 298 "http/transport_security_state_source.h",
291 "log/net_log.cc", 299 "log/net_log.cc",
292 "log/net_log.h", 300 "log/net_log.h",
293 "log/net_log_capture_mode.cc", 301 "log/net_log_capture_mode.cc",
294 "log/net_log_capture_mode.h", 302 "log/net_log_capture_mode.h",
295 "log/net_log_entry.cc", 303 "log/net_log_entry.cc",
296 "log/net_log_entry.h", 304 "log/net_log_entry.h",
297 "log/net_log_event_type.h", 305 "log/net_log_event_type.h",
(...skipping 4174 matching lines...) Expand 10 before | Expand all | Expand 10 after
4472 "http/http_util_unittest.cc", 4480 "http/http_util_unittest.cc",
4473 "http/http_vary_data_unittest.cc", 4481 "http/http_vary_data_unittest.cc",
4474 "http/mock_allow_http_auth_preferences.cc", 4482 "http/mock_allow_http_auth_preferences.cc",
4475 "http/mock_allow_http_auth_preferences.h", 4483 "http/mock_allow_http_auth_preferences.h",
4476 "http/mock_gssapi_library_posix.cc", 4484 "http/mock_gssapi_library_posix.cc",
4477 "http/mock_gssapi_library_posix.h", 4485 "http/mock_gssapi_library_posix.h",
4478 "http/mock_http_cache.cc", 4486 "http/mock_http_cache.cc",
4479 "http/mock_http_cache.h", 4487 "http/mock_http_cache.h",
4480 "http/mock_sspi_library_win.cc", 4488 "http/mock_sspi_library_win.cc",
4481 "http/mock_sspi_library_win.h", 4489 "http/mock_sspi_library_win.h",
4490 "http/ntlm_buffer_reader_unittest.cc",
4491 "http/ntlm_buffer_writer_unittest.cc",
4482 "http/transport_security_persister_unittest.cc", 4492 "http/transport_security_persister_unittest.cc",
4483 "http/transport_security_state_unittest.cc", 4493 "http/transport_security_state_unittest.cc",
4484 "http/url_security_manager_unittest.cc", 4494 "http/url_security_manager_unittest.cc",
4485 "http2/decoder/decode_buffer_test.cc", 4495 "http2/decoder/decode_buffer_test.cc",
4486 "http2/decoder/decode_http2_structures_test.cc", 4496 "http2/decoder/decode_http2_structures_test.cc",
4487 "http2/decoder/frame_decoder_state_test_util.cc", 4497 "http2/decoder/frame_decoder_state_test_util.cc",
4488 "http2/decoder/frame_decoder_state_test_util.h", 4498 "http2/decoder/frame_decoder_state_test_util.h",
4489 "http2/decoder/http2_frame_decoder_listener_test_util.cc", 4499 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4490 "http2/decoder/http2_frame_decoder_listener_test_util.h", 4500 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4491 "http2/decoder/http2_frame_decoder_test.cc", 4501 "http2/decoder/http2_frame_decoder_test.cc",
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
5938 ] 5948 ]
5939 deps = [ 5949 deps = [
5940 ":net_fuzzer_test_support", 5950 ":net_fuzzer_test_support",
5941 ":test_support", 5951 ":test_support",
5942 "//base", 5952 "//base",
5943 "//net", 5953 "//net",
5944 ] 5954 ]
5945 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5955 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5946 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5956 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5947 } 5957 }
OLDNEW
« no previous file with comments | « no previous file | net/http/ntlm_buffer_reader.h » ('j') | net/http/ntlm_buffer_reader.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698