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

Side by Side Diff: net/BUILD.gn

Issue 2904633002: Replace NTLMv1 implementation with a functionally equivalent one.
Patch Set: Merge build config back to net 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
« no previous file with comments | « no previous file | net/http/http_auth_handler_ntlm.h » ('j') | net/ntlm/ntlm_client.cc » ('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 1753 matching lines...) Expand 10 before | Expand all | Expand 10 after
1764 "ntlm/des.cc", 1764 "ntlm/des.cc",
1765 "ntlm/des.h", 1765 "ntlm/des.h",
1766 "ntlm/md4.cc", 1766 "ntlm/md4.cc",
1767 "ntlm/md4.h", 1767 "ntlm/md4.h",
1768 "ntlm/ntlm.cc", 1768 "ntlm/ntlm.cc",
1769 "ntlm/ntlm.h", 1769 "ntlm/ntlm.h",
1770 "ntlm/ntlm_buffer_reader.cc", 1770 "ntlm/ntlm_buffer_reader.cc",
1771 "ntlm/ntlm_buffer_reader.h", 1771 "ntlm/ntlm_buffer_reader.h",
1772 "ntlm/ntlm_buffer_writer.cc", 1772 "ntlm/ntlm_buffer_writer.cc",
1773 "ntlm/ntlm_buffer_writer.h", 1773 "ntlm/ntlm_buffer_writer.h",
1774 "ntlm/ntlm_client.cc",
1775 "ntlm/ntlm_client.h",
1774 "ntlm/ntlm_constants.h", 1776 "ntlm/ntlm_constants.h",
1775 ] 1777 ]
1776 } 1778 }
1777 1779
1778 if (!enable_built_in_dns) { 1780 if (!enable_built_in_dns) {
1779 sources -= [ 1781 sources -= [
1780 "dns/address_sorter_posix.cc", 1782 "dns/address_sorter_posix.cc",
1781 "dns/address_sorter_posix.h", 1783 "dns/address_sorter_posix.h",
1782 "dns/dns_client.cc", 1784 "dns/dns_client.cc",
1783 ] 1785 ]
(...skipping 3441 matching lines...) Expand 10 before | Expand all | Expand 10 after
5225 if (!is_proto_quic && v8_use_external_startup_data) { 5227 if (!is_proto_quic && v8_use_external_startup_data) {
5226 deps += [ "//gin" ] 5228 deps += [ "//gin" ]
5227 } 5229 }
5228 5230
5229 if (!is_win) { 5231 if (!is_win) {
5230 sources += [ 5232 sources += [
5231 "http/http_auth_handler_ntlm_portable_unittest.cc", 5233 "http/http_auth_handler_ntlm_portable_unittest.cc",
5232 "ntlm/des_unittest.cc", 5234 "ntlm/des_unittest.cc",
5233 "ntlm/ntlm_buffer_reader_unittest.cc", 5235 "ntlm/ntlm_buffer_reader_unittest.cc",
5234 "ntlm/ntlm_buffer_writer_unittest.cc", 5236 "ntlm/ntlm_buffer_writer_unittest.cc",
5237 "ntlm/ntlm_client_unittest.cc",
5235 "ntlm/ntlm_test_data.h", 5238 "ntlm/ntlm_test_data.h",
5236 "ntlm/ntlm_unittest.cc", 5239 "ntlm/ntlm_unittest.cc",
5237 ] 5240 ]
5238 } 5241 }
5239 5242
5240 if (!use_nss_certs) { 5243 if (!use_nss_certs) {
5241 sources -= [ 5244 sources -= [
5242 "cert/internal/trust_store_nss_unittest.cc", 5245 "cert/internal/trust_store_nss_unittest.cc",
5243 "cert/nss_cert_database_unittest.cc", 5246 "cert/nss_cert_database_unittest.cc",
5244 "ssl/client_cert_store_nss_unittest.cc", 5247 "ssl/client_cert_store_nss_unittest.cc",
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
6079 ] 6082 ]
6080 deps = [ 6083 deps = [
6081 ":net_fuzzer_test_support", 6084 ":net_fuzzer_test_support",
6082 ":test_support", 6085 ":test_support",
6083 "//base", 6086 "//base",
6084 "//net", 6087 "//net",
6085 ] 6088 ]
6086 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6089 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6087 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6090 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6088 } 6091 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_auth_handler_ntlm.h » ('j') | net/ntlm/ntlm_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698