| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 "//net/data/ssl/wosign:wosign_domains", | 364 "//net/data/ssl/wosign:wosign_domains", |
| 365 "//third_party/protobuf:protobuf_lite", | 365 "//third_party/protobuf:protobuf_lite", |
| 366 "//url:url_features", | 366 "//url:url_features", |
| 367 ] | 367 ] |
| 368 | 368 |
| 369 public_deps = [ | 369 public_deps = [ |
| 370 ":net_quic_proto", | 370 ":net_quic_proto", |
| 371 ":traffic_annotation", | 371 ":traffic_annotation", |
| 372 "//crypto", | 372 "//crypto", |
| 373 "//crypto:platform", | 373 "//crypto:platform", |
| 374 "//third_party/boringssl", |
| 374 ] | 375 ] |
| 375 | 376 |
| 376 if (!is_nacl) { | 377 if (!is_nacl) { |
| 377 sources += [ | 378 sources += [ |
| 378 "android/cellular_signal_strength.cc", | 379 "android/cellular_signal_strength.cc", |
| 379 "android/cellular_signal_strength.h", | 380 "android/cellular_signal_strength.h", |
| 380 "android/cert_verify_result_android.cc", | 381 "android/cert_verify_result_android.cc", |
| 381 "android/cert_verify_result_android.h", | 382 "android/cert_verify_result_android.h", |
| 382 "android/gurl_utils.cc", | 383 "android/gurl_utils.cc", |
| 383 "android/gurl_utils.h", | 384 "android/gurl_utils.h", |
| (...skipping 5550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5934 ] | 5935 ] |
| 5935 deps = [ | 5936 deps = [ |
| 5936 ":net_fuzzer_test_support", | 5937 ":net_fuzzer_test_support", |
| 5937 ":test_support", | 5938 ":test_support", |
| 5938 "//base", | 5939 "//base", |
| 5939 "//net", | 5940 "//net", |
| 5940 ] | 5941 ] |
| 5941 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5942 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5942 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5943 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5943 } | 5944 } |
| OLD | NEW |