| 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 "//build/config/sanitizers:deps", | 1111 "//build/config/sanitizers:deps", |
| 1112 ] | 1112 ] |
| 1113 } | 1113 } |
| 1114 | 1114 |
| 1115 source_set("epoll_quic_tools") { | 1115 source_set("epoll_quic_tools") { |
| 1116 sources = [ | 1116 sources = [ |
| 1117 "tools/quic/quic_client.cc", | 1117 "tools/quic/quic_client.cc", |
| 1118 "tools/quic/quic_client.h", | 1118 "tools/quic/quic_client.h", |
| 1119 "tools/quic/quic_default_packet_writer.cc", | 1119 "tools/quic/quic_default_packet_writer.cc", |
| 1120 "tools/quic/quic_default_packet_writer.h", | 1120 "tools/quic/quic_default_packet_writer.h", |
| 1121 "tools/quic/quic_epoll_alarm_factory.cc", |
| 1122 "tools/quic/quic_epoll_alarm_factory.h", |
| 1121 "tools/quic/quic_epoll_clock.cc", | 1123 "tools/quic/quic_epoll_clock.cc", |
| 1122 "tools/quic/quic_epoll_clock.h", | 1124 "tools/quic/quic_epoll_clock.h", |
| 1123 "tools/quic/quic_epoll_connection_helper.cc", | 1125 "tools/quic/quic_epoll_connection_helper.cc", |
| 1124 "tools/quic/quic_epoll_connection_helper.h", | 1126 "tools/quic/quic_epoll_connection_helper.h", |
| 1125 "tools/quic/quic_packet_reader.cc", | 1127 "tools/quic/quic_packet_reader.cc", |
| 1126 "tools/quic/quic_packet_reader.h", | 1128 "tools/quic/quic_packet_reader.h", |
| 1127 "tools/quic/quic_packet_writer_wrapper.cc", | 1129 "tools/quic/quic_packet_writer_wrapper.cc", |
| 1128 "tools/quic/quic_packet_writer_wrapper.h", | 1130 "tools/quic/quic_packet_writer_wrapper.h", |
| 1129 "tools/quic/quic_server.cc", | 1131 "tools/quic/quic_server.cc", |
| 1130 "tools/quic/quic_server.h", | 1132 "tools/quic/quic_server.h", |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1914 sources = [ | 1916 sources = [ |
| 1915 "socket/socks5_client_socket_fuzzer.cc", | 1917 "socket/socks5_client_socket_fuzzer.cc", |
| 1916 ] | 1918 ] |
| 1917 deps = [ | 1919 deps = [ |
| 1918 ":net_fuzzer_test_support", | 1920 ":net_fuzzer_test_support", |
| 1919 ":test_support", | 1921 ":test_support", |
| 1920 "//base", | 1922 "//base", |
| 1921 "//net", | 1923 "//net", |
| 1922 ] | 1924 ] |
| 1923 } | 1925 } |
| OLD | NEW |