| 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 3021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3032 "//build/config:exe_and_shlib_deps", | 3032 "//build/config:exe_and_shlib_deps", |
| 3033 ] | 3033 ] |
| 3034 } | 3034 } |
| 3035 } | 3035 } |
| 3036 | 3036 |
| 3037 source_set("quic_test_tools") { | 3037 source_set("quic_test_tools") { |
| 3038 testonly = true | 3038 testonly = true |
| 3039 sources = [ | 3039 sources = [ |
| 3040 "quic/chromium/crypto_test_utils_chromium.cc", | 3040 "quic/chromium/crypto_test_utils_chromium.cc", |
| 3041 "quic/platform/api/quic_test.h", | 3041 "quic/platform/api/quic_test.h", |
| 3042 "quic/platform/api/quic_test_loopback.cc", |
| 3043 "quic/platform/api/quic_test_loopback.h", |
| 3042 "quic/platform/impl/quic_test_impl.cc", | 3044 "quic/platform/impl/quic_test_impl.cc", |
| 3043 "quic/platform/impl/quic_test_impl.h", | 3045 "quic/platform/impl/quic_test_impl.h", |
| 3046 "quic/platform/impl/quic_test_loopback_impl.cc", |
| 3047 "quic/platform/impl/quic_test_loopback_impl.h", |
| 3044 "quic/test_tools/crypto_test_utils.cc", | 3048 "quic/test_tools/crypto_test_utils.cc", |
| 3045 "quic/test_tools/crypto_test_utils.h", | 3049 "quic/test_tools/crypto_test_utils.h", |
| 3046 "quic/test_tools/delayed_verify_strike_register_client.cc", | 3050 "quic/test_tools/delayed_verify_strike_register_client.cc", |
| 3047 "quic/test_tools/delayed_verify_strike_register_client.h", | 3051 "quic/test_tools/delayed_verify_strike_register_client.h", |
| 3048 "quic/test_tools/failing_proof_source.cc", | 3052 "quic/test_tools/failing_proof_source.cc", |
| 3049 "quic/test_tools/failing_proof_source.h", | 3053 "quic/test_tools/failing_proof_source.h", |
| 3050 "quic/test_tools/fake_proof_source.cc", | 3054 "quic/test_tools/fake_proof_source.cc", |
| 3051 "quic/test_tools/fake_proof_source.h", | 3055 "quic/test_tools/fake_proof_source.h", |
| 3052 "quic/test_tools/mock_clock.cc", | 3056 "quic/test_tools/mock_clock.cc", |
| 3053 "quic/test_tools/mock_clock.h", | 3057 "quic/test_tools/mock_clock.h", |
| (...skipping 3004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6058 ] | 6062 ] |
| 6059 deps = [ | 6063 deps = [ |
| 6060 ":net_fuzzer_test_support", | 6064 ":net_fuzzer_test_support", |
| 6061 ":test_support", | 6065 ":test_support", |
| 6062 "//base", | 6066 "//base", |
| 6063 "//net", | 6067 "//net", |
| 6064 ] | 6068 ] |
| 6065 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6069 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6066 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6070 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6067 } | 6071 } |
| OLD | NEW |