| 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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 | 10 |
| (...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1032 "quic/quic_server.cc", | 1032 "quic/quic_server.cc", |
| 1033 "quic/quic_server.h", | 1033 "quic/quic_server.h", |
| 1034 "quic/quic_server_packet_writer.cc", | 1034 "quic/quic_server_packet_writer.cc", |
| 1035 "quic/quic_server_packet_writer.h", | 1035 "quic/quic_server_packet_writer.h", |
| 1036 "quic/quic_server_session.cc", | 1036 "quic/quic_server_session.cc", |
| 1037 "quic/quic_server_session.h", | 1037 "quic/quic_server_session.h", |
| 1038 "quic/quic_spdy_server_stream.cc", | 1038 "quic/quic_spdy_server_stream.cc", |
| 1039 "quic/quic_spdy_server_stream.h", | 1039 "quic/quic_spdy_server_stream.h", |
| 1040 "quic/quic_time_wait_list_manager.cc", | 1040 "quic/quic_time_wait_list_manager.cc", |
| 1041 "quic/quic_time_wait_list_manager.h", | 1041 "quic/quic_time_wait_list_manager.h", |
| 1042 "quic/string_piece_utils.h", |
| 1042 ] | 1043 ] |
| 1043 deps = [ | 1044 deps = [ |
| 1044 ":balsa", | |
| 1045 ":net", | 1045 ":net", |
| 1046 "//base", | 1046 "//base", |
| 1047 "//base/third_party/dynamic_annotations", | 1047 "//base/third_party/dynamic_annotations", |
| 1048 "//url", | 1048 "//url", |
| 1049 ] | 1049 ] |
| 1050 } | 1050 } |
| 1051 | 1051 |
| 1052 test("net_unittests") { | 1052 test("net_unittests") { |
| 1053 sources = gypi_values.net_test_sources | 1053 sources = gypi_values.net_test_sources |
| 1054 | 1054 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1315 sources = [ "quic/quic_server_bin.cc" ] | 1315 sources = [ "quic/quic_server_bin.cc" ] |
| 1316 deps = [ | 1316 deps = [ |
| 1317 ":quic_tools", | 1317 ":quic_tools", |
| 1318 ":net", | 1318 ":net", |
| 1319 "//base", | 1319 "//base", |
| 1320 "//third_party/openssl", | 1320 "//third_party/openssl", |
| 1321 ] | 1321 ] |
| 1322 } | 1322 } |
| 1323 | 1323 |
| 1324 } # !is_android | 1324 } # !is_android |
| OLD | NEW |