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