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 | 11 |
11 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 12 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
12 # Currently, that file can't be imported multiple times. Make this always | 13 # Currently, that file can't be imported multiple times. Make this always |
13 # imported when http://crbug.com/393704 is fixed. | 14 # imported when http://crbug.com/393704 is fixed. |
14 if (!is_android) { | 15 if (!is_android) { |
15 import("//tools/grit/grit_rule.gni") | 16 import("//tools/grit/grit_rule.gni") |
16 } | 17 } |
17 | 18 |
18 if (is_android) { | 19 if (is_android) { |
19 import("//build/config/android/config.gni") | 20 import("//build/config/android/config.gni") |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 "test/spawned_test_server/remote_test_server.h", | 678 "test/spawned_test_server/remote_test_server.h", |
678 "test/spawned_test_server/spawned_test_server.h", | 679 "test/spawned_test_server/spawned_test_server.h", |
679 "test/spawned_test_server/spawner_communicator.cc", | 680 "test/spawned_test_server/spawner_communicator.cc", |
680 "test/spawned_test_server/spawner_communicator.h", | 681 "test/spawned_test_server/spawner_communicator.h", |
681 "test/url_request/url_request_failed_job.cc", | 682 "test/url_request/url_request_failed_job.cc", |
682 "test/url_request/url_request_failed_job.h", | 683 "test/url_request/url_request_failed_job.h", |
683 "test/url_request/url_request_mock_data_job.cc", | 684 "test/url_request/url_request_mock_data_job.cc", |
684 "test/url_request/url_request_mock_data_job.h", | 685 "test/url_request/url_request_mock_data_job.h", |
685 "test/url_request/url_request_mock_http_job.cc", | 686 "test/url_request/url_request_mock_http_job.cc", |
686 "test/url_request/url_request_mock_http_job.h", | 687 "test/url_request/url_request_mock_http_job.h", |
| 688 "test/url_request/url_request_slow_download_job.cc", |
| 689 "test/url_request/url_request_slow_download_job.h", |
687 "url_request/test_url_fetcher_factory.cc", | 690 "url_request/test_url_fetcher_factory.cc", |
688 "url_request/test_url_fetcher_factory.h", | 691 "url_request/test_url_fetcher_factory.h", |
689 "url_request/test_url_request_interceptor.cc", | 692 "url_request/test_url_request_interceptor.cc", |
690 "url_request/test_url_request_interceptor.h", | 693 "url_request/test_url_request_interceptor.h", |
691 "url_request/url_request_test_util.cc", | 694 "url_request/url_request_test_util.cc", |
692 "url_request/url_request_test_util.h", | 695 "url_request/url_request_test_util.h", |
693 ] | 696 ] |
694 | 697 |
695 configs += [ ":net_win_size_truncation" ] | 698 configs += [ ":net_win_size_truncation" ] |
696 | 699 |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1410 "quic/quic_server_bin.cc", | 1413 "quic/quic_server_bin.cc", |
1411 ] | 1414 ] |
1412 deps = [ | 1415 deps = [ |
1413 ":quic_tools", | 1416 ":quic_tools", |
1414 ":net", | 1417 ":net", |
1415 "//base", | 1418 "//base", |
1416 "//third_party/boringssl", | 1419 "//third_party/boringssl", |
1417 ] | 1420 ] |
1418 } | 1421 } |
1419 } # !is_android && !is_win && !is_mac | 1422 } # !is_android && !is_win && !is_mac |
OLD | NEW |