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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 "test/net_test_suite.h", | 583 "test/net_test_suite.h", |
584 "test/python_utils.cc", | 584 "test/python_utils.cc", |
585 "test/python_utils.h", | 585 "test/python_utils.h", |
586 "test/scoped_disable_exit_on_dfatal.cc", | 586 "test/scoped_disable_exit_on_dfatal.cc", |
587 "test/scoped_disable_exit_on_dfatal.h", | 587 "test/scoped_disable_exit_on_dfatal.h", |
588 "test/test_certificate_data.h", | 588 "test/test_certificate_data.h", |
589 "test/url_request/ssl_certificate_error_job.cc", | 589 "test/url_request/ssl_certificate_error_job.cc", |
590 "test/url_request/ssl_certificate_error_job.h", | 590 "test/url_request/ssl_certificate_error_job.h", |
591 "test/url_request/url_request_failed_job.cc", | 591 "test/url_request/url_request_failed_job.cc", |
592 "test/url_request/url_request_failed_job.h", | 592 "test/url_request/url_request_failed_job.h", |
| 593 "test/url_request/url_request_hanging_connect_job.cc", |
| 594 "test/url_request/url_request_hanging_connect_job.h", |
| 595 "test/url_request/url_request_hanging_read_job.cc", |
| 596 "test/url_request/url_request_hanging_read_job.h", |
593 "test/url_request/url_request_mock_data_job.cc", | 597 "test/url_request/url_request_mock_data_job.cc", |
594 "test/url_request/url_request_mock_data_job.h", | 598 "test/url_request/url_request_mock_data_job.h", |
595 "test/url_request/url_request_slow_download_job.cc", | 599 "test/url_request/url_request_slow_download_job.cc", |
596 "test/url_request/url_request_slow_download_job.h", | 600 "test/url_request/url_request_slow_download_job.h", |
597 "url_request/test_url_fetcher_factory.cc", | 601 "url_request/test_url_fetcher_factory.cc", |
598 "url_request/test_url_fetcher_factory.h", | 602 "url_request/test_url_fetcher_factory.h", |
599 "url_request/url_request_test_util.cc", | 603 "url_request/url_request_test_util.cc", |
600 "url_request/url_request_test_util.h", | 604 "url_request/url_request_test_util.h", |
601 ] | 605 ] |
602 if (!is_ios) { | 606 if (!is_ios) { |
(...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2014 "url_request/url_request_fuzzer.cc", | 2018 "url_request/url_request_fuzzer.cc", |
2015 ] | 2019 ] |
2016 deps = [ | 2020 deps = [ |
2017 ":net_fuzzer_test_support", | 2021 ":net_fuzzer_test_support", |
2018 ":test_support", | 2022 ":test_support", |
2019 "//base", | 2023 "//base", |
2020 "//net", | 2024 "//net", |
2021 ] | 2025 ] |
2022 dict = "data/http/http.dict" | 2026 dict = "data/http/http.dict" |
2023 } | 2027 } |
OLD | NEW |