| 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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 "disk_cache/disk_cache_test_base.cc", | 530 "disk_cache/disk_cache_test_base.cc", |
| 531 "disk_cache/disk_cache_test_base.h", | 531 "disk_cache/disk_cache_test_base.h", |
| 532 "disk_cache/disk_cache_test_util.cc", | 532 "disk_cache/disk_cache_test_util.cc", |
| 533 "disk_cache/disk_cache_test_util.h", | 533 "disk_cache/disk_cache_test_util.h", |
| 534 "dns/dns_test_util.cc", | 534 "dns/dns_test_util.cc", |
| 535 "dns/dns_test_util.h", | 535 "dns/dns_test_util.h", |
| 536 "dns/mock_host_resolver.cc", | 536 "dns/mock_host_resolver.cc", |
| 537 "dns/mock_host_resolver.h", | 537 "dns/mock_host_resolver.h", |
| 538 "dns/mock_mdns_socket_factory.cc", | 538 "dns/mock_mdns_socket_factory.cc", |
| 539 "dns/mock_mdns_socket_factory.h", | 539 "dns/mock_mdns_socket_factory.h", |
| 540 "http/http_stream_factory_test_util.cc", |
| 541 "http/http_stream_factory_test_util.h", |
| 540 "http/http_transaction_test_util.cc", | 542 "http/http_transaction_test_util.cc", |
| 541 "http/http_transaction_test_util.h", | 543 "http/http_transaction_test_util.h", |
| 542 "log/test_net_log.cc", | 544 "log/test_net_log.cc", |
| 543 "log/test_net_log.h", | 545 "log/test_net_log.h", |
| 544 "log/test_net_log_entry.cc", | 546 "log/test_net_log_entry.cc", |
| 545 "log/test_net_log_entry.h", | 547 "log/test_net_log_entry.h", |
| 546 "log/test_net_log_util.cc", | 548 "log/test_net_log_util.cc", |
| 547 "log/test_net_log_util.h", | 549 "log/test_net_log_util.h", |
| 548 "proxy/mock_proxy_resolver.cc", | 550 "proxy/mock_proxy_resolver.cc", |
| 549 "proxy/mock_proxy_resolver.h", | 551 "proxy/mock_proxy_resolver.h", |
| (...skipping 1497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2047 "url_request/url_request_fuzzer.cc", | 2049 "url_request/url_request_fuzzer.cc", |
| 2048 ] | 2050 ] |
| 2049 deps = [ | 2051 deps = [ |
| 2050 ":net_fuzzer_test_support", | 2052 ":net_fuzzer_test_support", |
| 2051 ":test_support", | 2053 ":test_support", |
| 2052 "//base", | 2054 "//base", |
| 2053 "//net", | 2055 "//net", |
| 2054 ] | 2056 ] |
| 2055 dict = "data/http/http.dict" | 2057 dict = "data/http/http.dict" |
| 2056 } | 2058 } |
| OLD | NEW |