| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index 827ca6f47f71084fdaeefc68873bae7d23bbab35..ea7208dbd0f94de338654889a3794347846c0bac 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -117,6 +117,7 @@ component("net") {
|
| ]
|
|
|
| public_deps = [
|
| + ":net_extras_cert_proto",
|
| ":net_quic_proto",
|
| "//crypto",
|
| "//crypto:platform",
|
| @@ -423,6 +424,20 @@ grit("net_resources") {
|
| ]
|
| }
|
|
|
| +proto_library("net_extras_cert_proto") {
|
| + visibility = [ ":net" ]
|
| +
|
| + sources = [
|
| + "extras/cert/proto/cert_verification.proto",
|
| + ]
|
| + cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
|
| + cc_include = "net/base/net_export.h"
|
| +
|
| + defines = [ "NET_IMPLEMENTATION" ]
|
| +
|
| + extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
|
| +}
|
| +
|
| proto_library("net_quic_proto") {
|
| visibility = [ ":net" ]
|
|
|
| @@ -1672,9 +1687,7 @@ test("net_unittests") {
|
| }
|
|
|
| if (is_win) {
|
| - libs = [
|
| - "iphlpapi.lib",
|
| - ]
|
| + libs = [ "iphlpapi.lib" ]
|
| }
|
| }
|
|
|
|
|