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("//url/config.gni") | 8 import("//url/config.gni") |
9 | 9 |
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 "test/spawned_test_server/base_test_server.h", | 673 "test/spawned_test_server/base_test_server.h", |
674 "test/spawned_test_server/local_test_server_posix.cc", | 674 "test/spawned_test_server/local_test_server_posix.cc", |
675 "test/spawned_test_server/local_test_server_win.cc", | 675 "test/spawned_test_server/local_test_server_win.cc", |
676 "test/spawned_test_server/local_test_server.cc", | 676 "test/spawned_test_server/local_test_server.cc", |
677 "test/spawned_test_server/local_test_server.h", | 677 "test/spawned_test_server/local_test_server.h", |
678 "test/spawned_test_server/remote_test_server.cc", | 678 "test/spawned_test_server/remote_test_server.cc", |
679 "test/spawned_test_server/remote_test_server.h", | 679 "test/spawned_test_server/remote_test_server.h", |
680 "test/spawned_test_server/spawned_test_server.h", | 680 "test/spawned_test_server/spawned_test_server.h", |
681 "test/spawned_test_server/spawner_communicator.cc", | 681 "test/spawned_test_server/spawner_communicator.cc", |
682 "test/spawned_test_server/spawner_communicator.h", | 682 "test/spawned_test_server/spawner_communicator.h", |
| 683 "test/url_request/url_request_failed_job.cc", |
| 684 "test/url_request/url_request_failed_job.h", |
| 685 "test/url_request/url_request_mock_http_job.cc", |
| 686 "test/url_request/url_request_mock_http_job.h", |
683 "url_request/test_url_fetcher_factory.cc", | 687 "url_request/test_url_fetcher_factory.cc", |
684 "url_request/test_url_fetcher_factory.h", | 688 "url_request/test_url_fetcher_factory.h", |
685 "url_request/test_url_request_interceptor.cc", | 689 "url_request/test_url_request_interceptor.cc", |
686 "url_request/test_url_request_interceptor.h", | 690 "url_request/test_url_request_interceptor.h", |
687 "url_request/url_request_test_util.cc", | 691 "url_request/url_request_test_util.cc", |
688 "url_request/url_request_test_util.h", | 692 "url_request/url_request_test_util.h", |
689 ] | 693 ] |
690 | 694 |
691 configs += [ ":net_win_size_truncation" ] | 695 configs += [ ":net_win_size_truncation" ] |
692 | 696 |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1379 sources = [ "quic/quic_server_bin.cc" ] | 1383 sources = [ "quic/quic_server_bin.cc" ] |
1380 deps = [ | 1384 deps = [ |
1381 ":quic_tools", | 1385 ":quic_tools", |
1382 ":net", | 1386 ":net", |
1383 "//base", | 1387 "//base", |
1384 "//third_party/boringssl", | 1388 "//third_party/boringssl", |
1385 ] | 1389 ] |
1386 } | 1390 } |
1387 | 1391 |
1388 } # !is_android | 1392 } # !is_android |
OLD | NEW |