| OLD | NEW |
| 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 1745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1756 } | 1756 } |
| 1757 | 1757 |
| 1758 if (is_posix) { | 1758 if (is_posix) { |
| 1759 if (posix_avoid_mmap) { | 1759 if (posix_avoid_mmap) { |
| 1760 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] | 1760 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
| 1761 } else { | 1761 } else { |
| 1762 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] | 1762 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] |
| 1763 } | 1763 } |
| 1764 } | 1764 } |
| 1765 | 1765 |
| 1766 if (!is_win) { |
| 1767 deps += [ "//net/ntlm" ] |
| 1768 } |
| 1769 |
| 1766 if (!enable_built_in_dns) { | 1770 if (!enable_built_in_dns) { |
| 1767 sources -= [ | 1771 sources -= [ |
| 1768 "dns/address_sorter_posix.cc", | 1772 "dns/address_sorter_posix.cc", |
| 1769 "dns/address_sorter_posix.h", | 1773 "dns/address_sorter_posix.h", |
| 1770 "dns/dns_client.cc", | 1774 "dns/dns_client.cc", |
| 1771 ] | 1775 ] |
| 1772 } | 1776 } |
| 1773 | 1777 |
| 1774 if (use_byte_certs) { | 1778 if (use_byte_certs) { |
| 1775 if (is_ios) { | 1779 if (is_ios) { |
| (...skipping 3432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5208 } | 5212 } |
| 5209 | 5213 |
| 5210 if (is_chromeos) { | 5214 if (is_chromeos) { |
| 5211 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] | 5215 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] |
| 5212 } | 5216 } |
| 5213 | 5217 |
| 5214 if (!is_proto_quic && v8_use_external_startup_data) { | 5218 if (!is_proto_quic && v8_use_external_startup_data) { |
| 5215 deps += [ "//gin" ] | 5219 deps += [ "//gin" ] |
| 5216 } | 5220 } |
| 5217 | 5221 |
| 5222 if (!is_win) { |
| 5223 deps += [ "//net/ntlm:ntlm_unittests" ] |
| 5224 } |
| 5225 |
| 5218 if (!use_nss_certs) { | 5226 if (!use_nss_certs) { |
| 5219 sources -= [ | 5227 sources -= [ |
| 5220 "cert/internal/trust_store_nss_unittest.cc", | 5228 "cert/internal/trust_store_nss_unittest.cc", |
| 5221 "cert/nss_cert_database_unittest.cc", | 5229 "cert/nss_cert_database_unittest.cc", |
| 5222 "ssl/client_cert_store_nss_unittest.cc", | 5230 "ssl/client_cert_store_nss_unittest.cc", |
| 5223 "ssl/ssl_platform_key_nss_unittest.cc", | 5231 "ssl/ssl_platform_key_nss_unittest.cc", |
| 5224 ] | 5232 ] |
| 5225 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 5233 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
| 5226 sources -= [ | 5234 sources -= [ |
| 5227 "cert/nss_cert_database_chromeos_unittest.cc", | 5235 "cert/nss_cert_database_chromeos_unittest.cc", |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6057 ] | 6065 ] |
| 6058 deps = [ | 6066 deps = [ |
| 6059 ":net_fuzzer_test_support", | 6067 ":net_fuzzer_test_support", |
| 6060 ":test_support", | 6068 ":test_support", |
| 6061 "//base", | 6069 "//base", |
| 6062 "//net", | 6070 "//net", |
| 6063 ] | 6071 ] |
| 6064 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6072 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6065 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6073 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6066 } | 6074 } |
| OLD | NEW |