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

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.h » ('j') | net/http/ntlm.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.h",
289 "http/ntlm_buffer_reader.cc",
290 "http/ntlm_buffer_reader.h",
291 "http/ntlm_buffer_writer.cc",
292 "http/ntlm_buffer_writer.h",
288 "http/transport_security_state.cc", 293 "http/transport_security_state.cc",
289 "http/transport_security_state.h", 294 "http/transport_security_state.h",
290 "http/transport_security_state_source.h", 295 "http/transport_security_state_source.h",
291 "log/net_log.cc", 296 "log/net_log.cc",
292 "log/net_log.h", 297 "log/net_log.h",
293 "log/net_log_capture_mode.cc", 298 "log/net_log_capture_mode.cc",
294 "log/net_log_capture_mode.h", 299 "log/net_log_capture_mode.h",
295 "log/net_log_entry.cc", 300 "log/net_log_entry.cc",
296 "log/net_log_entry.h", 301 "log/net_log_entry.h",
297 "log/net_log_event_type.h", 302 "log/net_log_event_type.h",
(...skipping 4412 matching lines...) Expand 10 before | Expand all | Expand 10 after
4710 "http/http_util_unittest.cc", 4715 "http/http_util_unittest.cc",
4711 "http/http_vary_data_unittest.cc", 4716 "http/http_vary_data_unittest.cc",
4712 "http/mock_allow_http_auth_preferences.cc", 4717 "http/mock_allow_http_auth_preferences.cc",
4713 "http/mock_allow_http_auth_preferences.h", 4718 "http/mock_allow_http_auth_preferences.h",
4714 "http/mock_gssapi_library_posix.cc", 4719 "http/mock_gssapi_library_posix.cc",
4715 "http/mock_gssapi_library_posix.h", 4720 "http/mock_gssapi_library_posix.h",
4716 "http/mock_http_cache.cc", 4721 "http/mock_http_cache.cc",
4717 "http/mock_http_cache.h", 4722 "http/mock_http_cache.h",
4718 "http/mock_sspi_library_win.cc", 4723 "http/mock_sspi_library_win.cc",
4719 "http/mock_sspi_library_win.h", 4724 "http/mock_sspi_library_win.h",
4725 "http/ntlm_buffer_reader_unittest.cc",
4726 "http/ntlm_buffer_writer_unittest.cc",
4720 "http/transport_security_persister_unittest.cc", 4727 "http/transport_security_persister_unittest.cc",
4721 "http/transport_security_state_unittest.cc", 4728 "http/transport_security_state_unittest.cc",
4722 "http/url_security_manager_unittest.cc", 4729 "http/url_security_manager_unittest.cc",
4723 "http2/decoder/decode_buffer_test.cc", 4730 "http2/decoder/decode_buffer_test.cc",
4724 "http2/decoder/decode_http2_structures_test.cc", 4731 "http2/decoder/decode_http2_structures_test.cc",
4725 "http2/decoder/frame_decoder_state_test_util.cc", 4732 "http2/decoder/frame_decoder_state_test_util.cc",
4726 "http2/decoder/frame_decoder_state_test_util.h", 4733 "http2/decoder/frame_decoder_state_test_util.h",
4727 "http2/decoder/http2_frame_decoder_listener_test_util.cc", 4734 "http2/decoder/http2_frame_decoder_listener_test_util.cc",
4728 "http2/decoder/http2_frame_decoder_listener_test_util.h", 4735 "http2/decoder/http2_frame_decoder_listener_test_util.h",
4729 "http2/decoder/http2_frame_decoder_test.cc", 4736 "http2/decoder/http2_frame_decoder_test.cc",
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
6073 ] 6080 ]
6074 deps = [ 6081 deps = [
6075 ":net_fuzzer_test_support", 6082 ":net_fuzzer_test_support",
6076 ":test_support", 6083 ":test_support",
6077 "//base", 6084 "//base",
6078 "//net", 6085 "//net",
6079 ] 6086 ]
6080 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6087 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6081 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6088 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6082 } 6089 }
OLDNEW
« no previous file with comments | « no previous file | net/http/ntlm.h » ('j') | net/http/ntlm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698