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

Side by Side Diff: net/BUILD.gn

Issue 2879353002: Add a buffer reader/writer for NTLM. (Closed)
Patch Set: EXPECT_* -> ASSERT_* 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/ntlm/BUILD.gn » ('j') | net/ntlm/BUILD.gn » ('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 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 } 1747 }
1748 1748
1749 if (is_posix) { 1749 if (is_posix) {
1750 if (posix_avoid_mmap) { 1750 if (posix_avoid_mmap) {
1751 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] 1751 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
1752 } else { 1752 } else {
1753 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] 1753 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
1754 } 1754 }
1755 } 1755 }
1756 1756
1757 if (!is_win) {
1758 deps += [ "//net/ntlm" ]
1759 }
1760
1757 if (!enable_built_in_dns) { 1761 if (!enable_built_in_dns) {
1758 sources -= [ 1762 sources -= [
1759 "dns/address_sorter_posix.cc", 1763 "dns/address_sorter_posix.cc",
1760 "dns/address_sorter_posix.h", 1764 "dns/address_sorter_posix.h",
1761 "dns/dns_client.cc", 1765 "dns/dns_client.cc",
1762 ] 1766 ]
1763 } 1767 }
1764 1768
1765 if (use_byte_certs) { 1769 if (use_byte_certs) {
1766 if (is_ios) { 1770 if (is_ios) {
(...skipping 3442 matching lines...) Expand 10 before | Expand all | Expand 10 after
5209 } 5213 }
5210 5214
5211 if (is_chromeos) { 5215 if (is_chromeos) {
5212 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] 5216 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
5213 } 5217 }
5214 5218
5215 if (!is_proto_quic && v8_use_external_startup_data) { 5219 if (!is_proto_quic && v8_use_external_startup_data) {
5216 deps += [ "//gin" ] 5220 deps += [ "//gin" ]
5217 } 5221 }
5218 5222
5223 if (!is_win) {
5224 deps += [ "//net/ntlm:ntlm_unittests" ]
5225 }
5226
5219 if (!use_nss_certs) { 5227 if (!use_nss_certs) {
5220 sources -= [ 5228 sources -= [
5221 "cert/internal/trust_store_nss_unittest.cc", 5229 "cert/internal/trust_store_nss_unittest.cc",
5222 "cert/nss_cert_database_unittest.cc", 5230 "cert/nss_cert_database_unittest.cc",
5223 "ssl/client_cert_store_nss_unittest.cc", 5231 "ssl/client_cert_store_nss_unittest.cc",
5224 "ssl/ssl_platform_key_nss_unittest.cc", 5232 "ssl/ssl_platform_key_nss_unittest.cc",
5225 ] 5233 ]
5226 if (is_chromeos) { # Already removed for all non-ChromeOS builds. 5234 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
5227 sources -= [ 5235 sources -= [
5228 "cert/nss_cert_database_chromeos_unittest.cc", 5236 "cert/nss_cert_database_chromeos_unittest.cc",
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
6073 ] 6081 ]
6074 deps = [ 6082 deps = [
6075 ":net_fuzzer_test_support", 6083 ":net_fuzzer_test_support",
6076 ":test_support", 6084 ":test_support",
6077 "//base", 6085 "//base",
6078 "//net", 6086 "//net",
6079 ] 6087 ]
6080 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6088 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6081 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6089 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6082 } 6090 }
OLDNEW
« no previous file with comments | « no previous file | net/ntlm/BUILD.gn » ('j') | net/ntlm/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698