| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "ssl/token_binding.h", | 347 "ssl/token_binding.h", |
| 348 ] | 348 ] |
| 349 net_unfiltered_sources = [] | 349 net_unfiltered_sources = [] |
| 350 | 350 |
| 351 deps = [ | 351 deps = [ |
| 352 ":constants", | 352 ":constants", |
| 353 ":net_resources", | 353 ":net_resources", |
| 354 "//base", | 354 "//base", |
| 355 "//net/base/registry_controlled_domains", | 355 "//net/base/registry_controlled_domains", |
| 356 "//net/data/ssl/wosign:wosign_domains", | 356 "//net/data/ssl/wosign:wosign_domains", |
| 357 "//net/http:generate_transport_security_state", | |
| 358 "//third_party/protobuf:protobuf_lite", | 357 "//third_party/protobuf:protobuf_lite", |
| 359 "//url:url_features", | 358 "//url:url_features", |
| 360 ] | 359 ] |
| 361 | 360 |
| 362 public_deps = [ | 361 public_deps = [ |
| 363 ":net_quic_proto", | 362 ":net_quic_proto", |
| 364 ":traffic_annotation", | 363 ":traffic_annotation", |
| 365 "//crypto", | 364 "//crypto", |
| 366 "//crypto:platform", | 365 "//crypto:platform", |
| 367 ] | 366 ] |
| (...skipping 5368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5736 ] | 5735 ] |
| 5737 deps = [ | 5736 deps = [ |
| 5738 ":net_fuzzer_test_support", | 5737 ":net_fuzzer_test_support", |
| 5739 ":test_support", | 5738 ":test_support", |
| 5740 "//base", | 5739 "//base", |
| 5741 "//net", | 5740 "//net", |
| 5742 ] | 5741 ] |
| 5743 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5742 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5744 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5743 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5745 } | 5744 } |
| OLD | NEW |