| 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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 "test/spawned_test_server/local_test_server_win.cc", | 682 "test/spawned_test_server/local_test_server_win.cc", |
| 683 "test/spawned_test_server/local_test_server.cc", | 683 "test/spawned_test_server/local_test_server.cc", |
| 684 "test/spawned_test_server/local_test_server.h", | 684 "test/spawned_test_server/local_test_server.h", |
| 685 "test/spawned_test_server/remote_test_server.cc", | 685 "test/spawned_test_server/remote_test_server.cc", |
| 686 "test/spawned_test_server/remote_test_server.h", | 686 "test/spawned_test_server/remote_test_server.h", |
| 687 "test/spawned_test_server/spawned_test_server.h", | 687 "test/spawned_test_server/spawned_test_server.h", |
| 688 "test/spawned_test_server/spawner_communicator.cc", | 688 "test/spawned_test_server/spawner_communicator.cc", |
| 689 "test/spawned_test_server/spawner_communicator.h", | 689 "test/spawned_test_server/spawner_communicator.h", |
| 690 "url_request/test_url_fetcher_factory.cc", | 690 "url_request/test_url_fetcher_factory.cc", |
| 691 "url_request/test_url_fetcher_factory.h", | 691 "url_request/test_url_fetcher_factory.h", |
| 692 "url_request/test_url_request_interceptor.cc", |
| 693 "url_request/test_url_request_interceptor.h", |
| 692 "url_request/url_request_test_util.cc", | 694 "url_request/url_request_test_util.cc", |
| 693 "url_request/url_request_test_util.h", | 695 "url_request/url_request_test_util.h", |
| 694 ] | 696 ] |
| 695 | 697 |
| 696 configs += [ ":net_win_size_truncation" ] | 698 configs += [ ":net_win_size_truncation" ] |
| 697 | 699 |
| 698 deps = [ | 700 deps = [ |
| 699 "//base", | 701 "//base", |
| 700 "//base/test:test_support", | 702 "//base/test:test_support", |
| 701 "//crypto", | 703 "//crypto", |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 sources = [ "quic/quic_server_bin.cc" ] | 1385 sources = [ "quic/quic_server_bin.cc" ] |
| 1384 deps = [ | 1386 deps = [ |
| 1385 ":quic_tools", | 1387 ":quic_tools", |
| 1386 ":net", | 1388 ":net", |
| 1387 "//base", | 1389 "//base", |
| 1388 "//third_party/boringssl", | 1390 "//third_party/boringssl", |
| 1389 ] | 1391 ] |
| 1390 } | 1392 } |
| 1391 | 1393 |
| 1392 } # !is_android | 1394 } # !is_android |
| OLD | NEW |