Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: net/BUILD.gn

Issue 1892033002: Cert - protobufs to serialize and deserialize CertVerifierCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 420
420 grit("net_resources") { 421 grit("net_resources") {
421 source = "base/net_resources.grd" 422 source = "base/net_resources.grd"
422 use_qualified_include = true 423 use_qualified_include = true
423 outputs = [ 424 outputs = [
424 "grit/net_resources.h", 425 "grit/net_resources.h",
425 "net_resources.pak", 426 "net_resources.pak",
426 ] 427 ]
427 } 428 }
428 429
430 proto_library("net_cert_proto") {
431 visibility = [ ":net" ]
432
433 sources = [
434 "cert/proto/cert_verification.proto",
435 ]
436 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
437 cc_include = "net/base/net_export.h"
438
439 defines = [ "NET_IMPLEMENTATION" ]
440
441 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
442 }
443
429 proto_library("net_quic_proto") { 444 proto_library("net_quic_proto") {
430 visibility = [ ":net" ] 445 visibility = [ ":net" ]
431 446
432 sources = [ 447 sources = [
433 "quic/proto/cached_network_parameters.proto", 448 "quic/proto/cached_network_parameters.proto",
434 "quic/proto/source_address_token.proto", 449 "quic/proto/source_address_token.proto",
435 ] 450 ]
436 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:" 451 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
437 cc_include = "net/base/net_export.h" 452 cc_include = "net/base/net_export.h"
438 453
(...skipping 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1995 "url_request/url_request_fuzzer.cc", 2010 "url_request/url_request_fuzzer.cc",
1996 ] 2011 ]
1997 deps = [ 2012 deps = [
1998 ":net_fuzzer_test_support", 2013 ":net_fuzzer_test_support",
1999 ":test_support", 2014 ":test_support",
2000 "//base", 2015 "//base",
2001 "//net", 2016 "//net",
2002 ] 2017 ]
2003 dict = "data/http/http.dict" 2018 dict = "data/http/http.dict"
2004 } 2019 }
OLDNEW
« no previous file with comments | « no previous file | net/cert/cert_verifier_cache_persister.h » ('j') | net/cert/cert_verifier_cache_persister.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698