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