| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 } | 256 } |
| 257 | 257 |
| 258 if (!enable_mdns) { | 258 if (!enable_mdns) { |
| 259 sources -= [ | 259 sources -= [ |
| 260 "dns/mdns_cache.cc", | 260 "dns/mdns_cache.cc", |
| 261 "dns/mdns_cache.h", | 261 "dns/mdns_cache.h", |
| 262 "dns/mdns_client.cc", | 262 "dns/mdns_client.cc", |
| 263 "dns/mdns_client.h", | 263 "dns/mdns_client.h", |
| 264 "dns/mdns_client_impl.cc", | 264 "dns/mdns_client_impl.cc", |
| 265 "dns/mdns_client_impl.h", | 265 "dns/mdns_client_impl.h", |
| 266 "dns/record_parsed.cc", | |
| 267 "dns/record_parsed.h", | |
| 268 "dns/record_rdata.cc", | |
| 269 "dns/record_rdata.h", | |
| 270 ] | 266 ] |
| 271 } | 267 } |
| 272 | 268 |
| 273 if (is_win) { | 269 if (is_win) { |
| 274 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] | 270 sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] |
| 275 } else { # !is_win | 271 } else { # !is_win |
| 276 sources -= [ | 272 sources -= [ |
| 277 "base/winsock_init.cc", | 273 "base/winsock_init.cc", |
| 278 "base/winsock_init.h", | 274 "base/winsock_init.h", |
| 279 "base/winsock_util.cc", | 275 "base/winsock_util.cc", |
| (...skipping 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", | 1585 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
| 1590 "proxy/proxy_resolver_factory_mojo_unittest.cc", | 1586 "proxy/proxy_resolver_factory_mojo_unittest.cc", |
| 1591 "proxy/proxy_service_mojo_unittest.cc", | 1587 "proxy/proxy_service_mojo_unittest.cc", |
| 1592 ] | 1588 ] |
| 1593 } | 1589 } |
| 1594 | 1590 |
| 1595 if (!enable_mdns) { | 1591 if (!enable_mdns) { |
| 1596 sources -= [ | 1592 sources -= [ |
| 1597 "dns/mdns_cache_unittest.cc", | 1593 "dns/mdns_cache_unittest.cc", |
| 1598 "dns/mdns_client_unittest.cc", | 1594 "dns/mdns_client_unittest.cc", |
| 1599 "dns/record_parsed_unittest.cc", | |
| 1600 "dns/record_rdata_unittest.cc", | |
| 1601 ] | 1595 ] |
| 1602 } | 1596 } |
| 1603 | 1597 |
| 1604 if (is_ios) { | 1598 if (is_ios) { |
| 1605 sources -= [ | 1599 sources -= [ |
| 1606 # TODO(droger): The following tests are disabled because the | 1600 # TODO(droger): The following tests are disabled because the |
| 1607 # implementation is missing or incomplete. | 1601 # implementation is missing or incomplete. |
| 1608 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. | 1602 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. |
| 1609 "base/keygen_handler_unittest.cc", | 1603 "base/keygen_handler_unittest.cc", |
| 1610 "disk_cache/backend_unittest.cc", | 1604 "disk_cache/backend_unittest.cc", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2079 "url_request/url_request_fuzzer.cc", | 2073 "url_request/url_request_fuzzer.cc", |
| 2080 ] | 2074 ] |
| 2081 deps = [ | 2075 deps = [ |
| 2082 ":net_fuzzer_test_support", | 2076 ":net_fuzzer_test_support", |
| 2083 ":test_support", | 2077 ":test_support", |
| 2084 "//base", | 2078 "//base", |
| 2085 "//net", | 2079 "//net", |
| 2086 ] | 2080 ] |
| 2087 dict = "data/http/http.dict" | 2081 dict = "data/http/http.dict" |
| 2088 } | 2082 } |
| OLD | NEW |