| 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 "dns/dns_test_util.cc", | 638 "dns/dns_test_util.cc", |
| 639 "dns/dns_test_util.h", | 639 "dns/dns_test_util.h", |
| 640 "dns/mock_host_resolver.cc", | 640 "dns/mock_host_resolver.cc", |
| 641 "dns/mock_host_resolver.h", | 641 "dns/mock_host_resolver.h", |
| 642 "dns/mock_mdns_socket_factory.cc", | 642 "dns/mock_mdns_socket_factory.cc", |
| 643 "dns/mock_mdns_socket_factory.h", | 643 "dns/mock_mdns_socket_factory.h", |
| 644 "http/http_transaction_test_util.cc", | 644 "http/http_transaction_test_util.cc", |
| 645 "http/http_transaction_test_util.h", | 645 "http/http_transaction_test_util.h", |
| 646 "log/captured_net_log_entry.cc", | 646 "log/captured_net_log_entry.cc", |
| 647 "log/captured_net_log_entry.h", | 647 "log/captured_net_log_entry.h", |
| 648 "log/capturing_net_log.cc", | |
| 649 "log/capturing_net_log.h", | |
| 650 "log/capturing_net_log_observer.cc", | 648 "log/capturing_net_log_observer.cc", |
| 651 "log/capturing_net_log_observer.h", | 649 "log/capturing_net_log_observer.h", |
| 650 "log/test_net_log.cc", |
| 651 "log/test_net_log.h", |
| 652 "proxy/mock_proxy_resolver.cc", | 652 "proxy/mock_proxy_resolver.cc", |
| 653 "proxy/mock_proxy_resolver.h", | 653 "proxy/mock_proxy_resolver.h", |
| 654 "proxy/mock_proxy_script_fetcher.cc", | 654 "proxy/mock_proxy_script_fetcher.cc", |
| 655 "proxy/mock_proxy_script_fetcher.h", | 655 "proxy/mock_proxy_script_fetcher.h", |
| 656 "proxy/proxy_config_service_common_unittest.cc", | 656 "proxy/proxy_config_service_common_unittest.cc", |
| 657 "proxy/proxy_config_service_common_unittest.h", | 657 "proxy/proxy_config_service_common_unittest.h", |
| 658 "socket/socket_test_util.cc", | 658 "socket/socket_test_util.cc", |
| 659 "socket/socket_test_util.h", | 659 "socket/socket_test_util.h", |
| 660 "test/cert_test_util.cc", | 660 "test/cert_test_util.cc", |
| 661 "test/cert_test_util.h", | 661 "test/cert_test_util.h", |
| (...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1640 } else { | 1640 } else { |
| 1641 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1641 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 if (is_win && icu_use_data_file) { | 1644 if (is_win && icu_use_data_file) { |
| 1645 # This is needed to trigger the dll copy step on windows. | 1645 # This is needed to trigger the dll copy step on windows. |
| 1646 # TODO(mark): Specifying this here shouldn't be necessary. | 1646 # TODO(mark): Specifying this here shouldn't be necessary. |
| 1647 deps += [ "//third_party/icu:icudata" ] | 1647 deps += [ "//third_party/icu:icudata" ] |
| 1648 } | 1648 } |
| 1649 } | 1649 } |
| OLD | NEW |