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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 | 115 |
116 deps = [ | 116 deps = [ |
117 ":net_resources", | 117 ":net_resources", |
118 "//base", | 118 "//base", |
119 "//net/base/registry_controlled_domains", | 119 "//net/base/registry_controlled_domains", |
120 "//third_party/protobuf:protobuf_lite", | 120 "//third_party/protobuf:protobuf_lite", |
121 "//url:url_features", | 121 "//url:url_features", |
122 ] | 122 ] |
123 | 123 |
124 public_deps = [ | 124 public_deps = [ |
| 125 ":net_cert_proto", |
125 ":net_quic_proto", | 126 ":net_quic_proto", |
126 "//crypto", | 127 "//crypto", |
127 "//crypto:platform", | 128 "//crypto:platform", |
128 ] | 129 ] |
129 | 130 |
130 if (!is_nacl) { | 131 if (!is_nacl) { |
131 sources += gypi_values.net_non_nacl_sources | 132 sources += gypi_values.net_non_nacl_sources |
132 | 133 |
133 deps += [ | 134 deps += [ |
134 "//base/third_party/dynamic_annotations", | 135 "//base/third_party/dynamic_annotations", |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 | 509 |
509 grit("net_resources") { | 510 grit("net_resources") { |
510 source = "base/net_resources.grd" | 511 source = "base/net_resources.grd" |
511 use_qualified_include = true | 512 use_qualified_include = true |
512 outputs = [ | 513 outputs = [ |
513 "grit/net_resources.h", | 514 "grit/net_resources.h", |
514 "net_resources.pak", | 515 "net_resources.pak", |
515 ] | 516 ] |
516 } | 517 } |
517 | 518 |
| 519 proto_library("net_cert_proto") { |
| 520 visibility = [ ":net" ] |
| 521 |
| 522 sources = [ |
| 523 "cert/proto/cert_verification.proto", |
| 524 ] |
| 525 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
| 526 cc_include = "net/base/net_export.h" |
| 527 |
| 528 defines = [ "NET_IMPLEMENTATION" ] |
| 529 |
| 530 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 531 } |
| 532 |
518 proto_library("net_quic_proto") { | 533 proto_library("net_quic_proto") { |
519 visibility = [ ":net" ] | 534 visibility = [ ":net" ] |
520 | 535 |
521 sources = [ | 536 sources = [ |
522 "quic/proto/cached_network_parameters.proto", | 537 "quic/proto/cached_network_parameters.proto", |
523 "quic/proto/source_address_token.proto", | 538 "quic/proto/source_address_token.proto", |
524 ] | 539 ] |
525 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" | 540 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" |
526 cc_include = "net/base/net_export.h" | 541 cc_include = "net/base/net_export.h" |
527 | 542 |
(...skipping 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1999 sources = [ | 2014 sources = [ |
2000 "socket/socks5_client_socket_fuzzer.cc", | 2015 "socket/socks5_client_socket_fuzzer.cc", |
2001 ] | 2016 ] |
2002 deps = [ | 2017 deps = [ |
2003 ":net_fuzzer_test_support", | 2018 ":net_fuzzer_test_support", |
2004 ":test_support", | 2019 ":test_support", |
2005 "//base", | 2020 "//base", |
2006 "//net", | 2021 "//net", |
2007 ] | 2022 ] |
2008 } | 2023 } |
OLD | NEW |