| 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 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1228 deps = [ | 1228 deps = [ |
| 1229 ":net", | 1229 ":net", |
| 1230 "//base", | 1230 "//base", |
| 1231 "//build/config/sanitizers:deps", | 1231 "//build/config/sanitizers:deps", |
| 1232 ] | 1232 ] |
| 1233 } | 1233 } |
| 1234 } | 1234 } |
| 1235 | 1235 |
| 1236 source_set("simple_quic_tools") { | 1236 source_set("simple_quic_tools") { |
| 1237 sources = [ | 1237 sources = [ |
| 1238 "tools/quic/chlo_extractor.cc", |
| 1239 "tools/quic/chlo_extractor.h", |
| 1238 "tools/quic/quic_client_base.cc", | 1240 "tools/quic/quic_client_base.cc", |
| 1239 "tools/quic/quic_client_base.h", | 1241 "tools/quic/quic_client_base.h", |
| 1240 "tools/quic/quic_client_session.cc", | 1242 "tools/quic/quic_client_session.cc", |
| 1241 "tools/quic/quic_client_session.h", | 1243 "tools/quic/quic_client_session.h", |
| 1242 "tools/quic/quic_dispatcher.cc", | 1244 "tools/quic/quic_dispatcher.cc", |
| 1243 "tools/quic/quic_dispatcher.h", | 1245 "tools/quic/quic_dispatcher.h", |
| 1244 "tools/quic/quic_in_memory_cache.cc", | 1246 "tools/quic/quic_in_memory_cache.cc", |
| 1245 "tools/quic/quic_in_memory_cache.h", | 1247 "tools/quic/quic_in_memory_cache.h", |
| 1246 "tools/quic/quic_per_connection_packet_writer.cc", | 1248 "tools/quic/quic_per_connection_packet_writer.cc", |
| 1247 "tools/quic/quic_per_connection_packet_writer.h", | 1249 "tools/quic/quic_per_connection_packet_writer.h", |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2011 "url_request/url_request_fuzzer.cc", | 2013 "url_request/url_request_fuzzer.cc", |
| 2012 ] | 2014 ] |
| 2013 deps = [ | 2015 deps = [ |
| 2014 ":net_fuzzer_test_support", | 2016 ":net_fuzzer_test_support", |
| 2015 ":test_support", | 2017 ":test_support", |
| 2016 "//base", | 2018 "//base", |
| 2017 "//net", | 2019 "//net", |
| 2018 ] | 2020 ] |
| 2019 dict = "data/http/http.dict" | 2021 dict = "data/http/http.dict" |
| 2020 } | 2022 } |
| OLD | NEW |