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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 "test/ct_test_util.cc", | 653 "test/ct_test_util.cc", |
654 "test/ct_test_util.h", | 654 "test/ct_test_util.h", |
655 "test/embedded_test_server/embedded_test_server.cc", | 655 "test/embedded_test_server/embedded_test_server.cc", |
656 "test/embedded_test_server/embedded_test_server.h", | 656 "test/embedded_test_server/embedded_test_server.h", |
657 "test/embedded_test_server/http_connection.cc", | 657 "test/embedded_test_server/http_connection.cc", |
658 "test/embedded_test_server/http_connection.h", | 658 "test/embedded_test_server/http_connection.h", |
659 "test/embedded_test_server/http_request.cc", | 659 "test/embedded_test_server/http_request.cc", |
660 "test/embedded_test_server/http_request.h", | 660 "test/embedded_test_server/http_request.h", |
661 "test/embedded_test_server/http_response.cc", | 661 "test/embedded_test_server/http_response.cc", |
662 "test/embedded_test_server/http_response.h", | 662 "test/embedded_test_server/http_response.h", |
| 663 "test/event_waiter.h", |
663 "test/net_test_suite.cc", | 664 "test/net_test_suite.cc", |
664 "test/net_test_suite.h", | 665 "test/net_test_suite.h", |
665 "test/python_utils.cc", | 666 "test/python_utils.cc", |
666 "test/python_utils.h", | 667 "test/python_utils.h", |
667 "test/spawned_test_server/base_test_server.cc", | 668 "test/spawned_test_server/base_test_server.cc", |
668 "test/spawned_test_server/base_test_server.h", | 669 "test/spawned_test_server/base_test_server.h", |
669 "test/spawned_test_server/local_test_server.cc", | 670 "test/spawned_test_server/local_test_server.cc", |
670 "test/spawned_test_server/local_test_server.h", | 671 "test/spawned_test_server/local_test_server.h", |
671 "test/spawned_test_server/local_test_server_posix.cc", | 672 "test/spawned_test_server/local_test_server_posix.cc", |
672 "test/spawned_test_server/local_test_server_win.cc", | 673 "test/spawned_test_server/local_test_server_win.cc", |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 | 816 |
816 public_deps = [ | 817 public_deps = [ |
817 ":net", | 818 ":net", |
818 "//net/interfaces", | 819 "//net/interfaces", |
819 "//third_party/mojo/src/mojo/public/cpp/bindings", | 820 "//third_party/mojo/src/mojo/public/cpp/bindings", |
820 ] | 821 ] |
821 } | 822 } |
822 | 823 |
823 source_set("net_utility_services") { | 824 source_set("net_utility_services") { |
824 sources = [ | 825 sources = [ |
| 826 "dns/host_resolver_mojo.cc", |
| 827 "dns/host_resolver_mojo.h", |
825 "proxy/mojo_proxy_resolver_impl.cc", | 828 "proxy/mojo_proxy_resolver_impl.cc", |
826 "proxy/mojo_proxy_resolver_impl.h", | 829 "proxy/mojo_proxy_resolver_impl.h", |
827 ] | 830 ] |
828 | 831 |
829 public_deps = [ | 832 public_deps = [ |
830 ":mojo_type_converters", | 833 ":mojo_type_converters", |
831 ":net", | 834 ":net", |
832 "//mojo/common", | 835 "//mojo/common", |
833 "//net/interfaces", | 836 "//net/interfaces", |
834 "//third_party/mojo/src/mojo/public/cpp/bindings", | 837 "//third_party/mojo/src/mojo/public/cpp/bindings", |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1367 | 1370 |
1368 if (use_v8_in_net && !is_android) { | 1371 if (use_v8_in_net && !is_android) { |
1369 deps += [ | 1372 deps += [ |
1370 ":net_browser_services", | 1373 ":net_browser_services", |
1371 ":net_utility_services", | 1374 ":net_utility_services", |
1372 "//mojo/environment:chromium", | 1375 "//mojo/environment:chromium", |
1373 "//third_party/mojo/src/mojo/edk/system", | 1376 "//third_party/mojo/src/mojo/edk/system", |
1374 ] | 1377 ] |
1375 } else { | 1378 } else { |
1376 sources -= [ | 1379 sources -= [ |
| 1380 "dns/host_resolver_mojo_unittest.cc", |
1377 "dns/mojo_host_resolver_impl_unittest.cc", | 1381 "dns/mojo_host_resolver_impl_unittest.cc", |
1378 "proxy/mojo_proxy_resolver_impl_unittest.cc", | 1382 "proxy/mojo_proxy_resolver_impl_unittest.cc", |
1379 ] | 1383 ] |
1380 } | 1384 } |
1381 | 1385 |
1382 if (!enable_mdns) { | 1386 if (!enable_mdns) { |
1383 sources -= [ | 1387 sources -= [ |
1384 "dns/mdns_cache_unittest.cc", | 1388 "dns/mdns_cache_unittest.cc", |
1385 "dns/mdns_client_unittest.cc", | 1389 "dns/mdns_client_unittest.cc", |
1386 "dns/record_parsed_unittest.cc", | 1390 "dns/record_parsed_unittest.cc", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1467 "quic/quic_server_bin.cc", | 1471 "quic/quic_server_bin.cc", |
1468 ] | 1472 ] |
1469 deps = [ | 1473 deps = [ |
1470 ":quic_tools", | 1474 ":quic_tools", |
1471 ":net", | 1475 ":net", |
1472 "//base", | 1476 "//base", |
1473 "//third_party/boringssl", | 1477 "//third_party/boringssl", |
1474 ] | 1478 ] |
1475 } | 1479 } |
1476 } # !is_android && !is_win && !is_mac | 1480 } # !is_android && !is_win && !is_mac |
OLD | NEW |