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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 source_set("net_utility_services") { | 833 source_set("net_utility_services") { |
834 sources = [ | 834 sources = [ |
835 "dns/host_resolver_mojo.cc", | 835 "dns/host_resolver_mojo.cc", |
836 "dns/host_resolver_mojo.h", | 836 "dns/host_resolver_mojo.h", |
837 "proxy/load_state_change_coalescer.cc", | 837 "proxy/load_state_change_coalescer.cc", |
838 "proxy/load_state_change_coalescer.h", | 838 "proxy/load_state_change_coalescer.h", |
839 "proxy/mojo_proxy_resolver_factory_impl.cc", | 839 "proxy/mojo_proxy_resolver_factory_impl.cc", |
840 "proxy/mojo_proxy_resolver_factory_impl.h", | 840 "proxy/mojo_proxy_resolver_factory_impl.h", |
841 "proxy/mojo_proxy_resolver_impl.cc", | 841 "proxy/mojo_proxy_resolver_impl.cc", |
842 "proxy/mojo_proxy_resolver_impl.h", | 842 "proxy/mojo_proxy_resolver_impl.h", |
| 843 "proxy/proxy_resolver_error_observer_mojo.cc", |
| 844 "proxy/proxy_resolver_error_observer_mojo.h", |
843 ] | 845 ] |
844 | 846 |
845 deps = [ | 847 deps = [ |
846 ":net_with_v8", | 848 ":net_with_v8", |
847 ] | 849 ] |
848 | 850 |
849 public_deps = [ | 851 public_deps = [ |
850 ":mojo_type_converters", | 852 ":mojo_type_converters", |
851 ":net", | 853 ":net", |
852 "//mojo/common", | 854 "//mojo/common", |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1490 "//mojo/environment:chromium", | 1492 "//mojo/environment:chromium", |
1491 "//third_party/mojo/src/mojo/edk/system", | 1493 "//third_party/mojo/src/mojo/edk/system", |
1492 ] | 1494 ] |
1493 } else { | 1495 } else { |
1494 sources -= [ | 1496 sources -= [ |
1495 "dns/host_resolver_mojo_unittest.cc", | 1497 "dns/host_resolver_mojo_unittest.cc", |
1496 "dns/mojo_host_resolver_impl_unittest.cc", | 1498 "dns/mojo_host_resolver_impl_unittest.cc", |
1497 "proxy/load_state_change_coalescer_unittest.cc", | 1499 "proxy/load_state_change_coalescer_unittest.cc", |
1498 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", | 1500 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", |
1499 "proxy/mojo_proxy_resolver_impl_unittest.cc", | 1501 "proxy/mojo_proxy_resolver_impl_unittest.cc", |
| 1502 "proxy/proxy_resolver_error_observer_mojo_unittest.cc", |
1500 "proxy/proxy_resolver_mojo_unittest.cc", | 1503 "proxy/proxy_resolver_mojo_unittest.cc", |
1501 "proxy/proxy_service_mojo_unittest.cc", | 1504 "proxy/proxy_service_mojo_unittest.cc", |
1502 ] | 1505 ] |
1503 } | 1506 } |
1504 | 1507 |
1505 if (!enable_mdns) { | 1508 if (!enable_mdns) { |
1506 sources -= [ | 1509 sources -= [ |
1507 "dns/mdns_cache_unittest.cc", | 1510 "dns/mdns_cache_unittest.cc", |
1508 "dns/mdns_client_unittest.cc", | 1511 "dns/mdns_client_unittest.cc", |
1509 "dns/record_parsed_unittest.cc", | 1512 "dns/record_parsed_unittest.cc", |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1617 } else { | 1620 } else { |
1618 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1621 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1619 } | 1622 } |
1620 | 1623 |
1621 if (is_win && icu_use_data_file) { | 1624 if (is_win && icu_use_data_file) { |
1622 # This is needed to trigger the dll copy step on windows. | 1625 # This is needed to trigger the dll copy step on windows. |
1623 # TODO(mark): Specifying this here shouldn't be necessary. | 1626 # TODO(mark): Specifying this here shouldn't be necessary. |
1624 deps += [ "//third_party/icu:icudata" ] | 1627 deps += [ "//third_party/icu:icudata" ] |
1625 } | 1628 } |
1626 } | 1629 } |
OLD | NEW |