| 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 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 deps = [ | 1006 deps = [ |
| 1007 ":net", | 1007 ":net", |
| 1008 "//base", | 1008 "//base", |
| 1009 ] | 1009 ] |
| 1010 } | 1010 } |
| 1011 | 1011 |
| 1012 source_set("epoll_quic_tools") { | 1012 source_set("epoll_quic_tools") { |
| 1013 sources = [ | 1013 sources = [ |
| 1014 "tools/quic/platform/impl/quic_epoll_clock.cc", | 1014 "tools/quic/platform/impl/quic_epoll_clock.cc", |
| 1015 "tools/quic/platform/impl/quic_epoll_clock.h", | 1015 "tools/quic/platform/impl/quic_epoll_clock.h", |
| 1016 "tools/quic/platform/impl/quic_socket_utils.cc", |
| 1017 "tools/quic/platform/impl/quic_socket_utils.h", |
| 1016 "tools/quic/quic_client.cc", | 1018 "tools/quic/quic_client.cc", |
| 1017 "tools/quic/quic_client.h", | 1019 "tools/quic/quic_client.h", |
| 1018 "tools/quic/quic_default_packet_writer.cc", | 1020 "tools/quic/quic_default_packet_writer.cc", |
| 1019 "tools/quic/quic_default_packet_writer.h", | 1021 "tools/quic/quic_default_packet_writer.h", |
| 1020 "tools/quic/quic_epoll_alarm_factory.cc", | 1022 "tools/quic/quic_epoll_alarm_factory.cc", |
| 1021 "tools/quic/quic_epoll_alarm_factory.h", | 1023 "tools/quic/quic_epoll_alarm_factory.h", |
| 1022 "tools/quic/quic_epoll_connection_helper.cc", | 1024 "tools/quic/quic_epoll_connection_helper.cc", |
| 1023 "tools/quic/quic_epoll_connection_helper.h", | 1025 "tools/quic/quic_epoll_connection_helper.h", |
| 1024 "tools/quic/quic_packet_reader.cc", | 1026 "tools/quic/quic_packet_reader.cc", |
| 1025 "tools/quic/quic_packet_reader.h", | 1027 "tools/quic/quic_packet_reader.h", |
| 1026 "tools/quic/quic_packet_writer_wrapper.cc", | 1028 "tools/quic/quic_packet_writer_wrapper.cc", |
| 1027 "tools/quic/quic_packet_writer_wrapper.h", | 1029 "tools/quic/quic_packet_writer_wrapper.h", |
| 1028 "tools/quic/quic_server.cc", | 1030 "tools/quic/quic_server.cc", |
| 1029 "tools/quic/quic_server.h", | 1031 "tools/quic/quic_server.h", |
| 1030 "tools/quic/quic_socket_utils.cc", | |
| 1031 "tools/quic/quic_socket_utils.h", | |
| 1032 ] | 1032 ] |
| 1033 deps = [ | 1033 deps = [ |
| 1034 ":epoll_server", | 1034 ":epoll_server", |
| 1035 ":net", | 1035 ":net", |
| 1036 ":simple_quic_tools", | 1036 ":simple_quic_tools", |
| 1037 "//base", | 1037 "//base", |
| 1038 "//base/third_party/dynamic_annotations", | 1038 "//base/third_party/dynamic_annotations", |
| 1039 "//crypto", | 1039 "//crypto", |
| 1040 "//third_party/boringssl", | 1040 "//third_party/boringssl", |
| 1041 "//url", | 1041 "//url", |
| (...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2055 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2055 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2056 ] | 2056 ] |
| 2057 deps = [ | 2057 deps = [ |
| 2058 ":net_fuzzer_test_support", | 2058 ":net_fuzzer_test_support", |
| 2059 "//base", | 2059 "//base", |
| 2060 "//net", | 2060 "//net", |
| 2061 "//url", | 2061 "//url", |
| 2062 ] | 2062 ] |
| 2063 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2063 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2064 } | 2064 } |
| OLD | NEW |