| 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 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1590 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", | 1586 "proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc", |
| 1591 "proxy/proxy_resolver_factory_mojo_unittest.cc", | 1587 "proxy/proxy_resolver_factory_mojo_unittest.cc", |
| 1592 "proxy/proxy_service_mojo_unittest.cc", | 1588 "proxy/proxy_service_mojo_unittest.cc", |
| 1593 ] | 1589 ] |
| 1594 } | 1590 } |
| 1595 | 1591 |
| 1596 if (!enable_mdns) { | 1592 if (!enable_mdns) { |
| 1597 sources -= [ | 1593 sources -= [ |
| 1598 "dns/mdns_cache_unittest.cc", | 1594 "dns/mdns_cache_unittest.cc", |
| 1599 "dns/mdns_client_unittest.cc", | 1595 "dns/mdns_client_unittest.cc", |
| 1600 "dns/record_parsed_unittest.cc", | |
| 1601 "dns/record_rdata_unittest.cc", | |
| 1602 ] | 1596 ] |
| 1603 } | 1597 } |
| 1604 | 1598 |
| 1605 if (is_ios) { | 1599 if (is_ios) { |
| 1606 sources -= [ | 1600 sources -= [ |
| 1607 # TODO(droger): The following tests are disabled because the | 1601 # TODO(droger): The following tests are disabled because the |
| 1608 # implementation is missing or incomplete. | 1602 # implementation is missing or incomplete. |
| 1609 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. | 1603 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. |
| 1610 "base/keygen_handler_unittest.cc", | 1604 "base/keygen_handler_unittest.cc", |
| 1611 "disk_cache/backend_unittest.cc", | 1605 "disk_cache/backend_unittest.cc", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2080 "url_request/url_request_fuzzer.cc", | 2074 "url_request/url_request_fuzzer.cc", |
| 2081 ] | 2075 ] |
| 2082 deps = [ | 2076 deps = [ |
| 2083 ":net_fuzzer_test_support", | 2077 ":net_fuzzer_test_support", |
| 2084 ":test_support", | 2078 ":test_support", |
| 2085 "//base", | 2079 "//base", |
| 2086 "//net", | 2080 "//net", |
| 2087 ] | 2081 ] |
| 2088 dict = "data/http/http.dict" | 2082 dict = "data/http/http.dict" |
| 2089 } | 2083 } |
| OLD | NEW |