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