| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index 4201f5b5d88d4ba4ca0826f3aa78255a9590f113..4ba5f995aa34b4d410774464618925b0fb5745c9 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -54,6 +54,7 @@ buildflag_header("features") {
|
| "ENABLE_REPORTING=$enable_reporting",
|
| "ENABLE_WEBSOCKETS=$enable_websockets",
|
| "USE_BYTE_CERTS=$use_byte_certs",
|
| + "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
|
| ]
|
| }
|
|
|
| @@ -360,11 +361,14 @@ component("net") {
|
| "//base",
|
| "//net/base/registry_controlled_domains",
|
| "//net/data/ssl/certificate_transparency:ct_log_list",
|
| - "//net/http:generate_transport_security_state",
|
| "//third_party/protobuf:protobuf_lite",
|
| "//url:url_features",
|
| ]
|
|
|
| + if (include_transport_security_state_preload_list) {
|
| + deps += [ "//net/http:generate_transport_security_state" ]
|
| + }
|
| +
|
| public_deps = [
|
| ":net_quic_proto",
|
| ":traffic_annotation",
|
|
|