| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index 796fb2b82382bb9c459b4b2388bf04d1ca317245..07ab2e39ee79e7cc63a905e558c9ab90f0002124 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -105,6 +105,7 @@ component("net") {
|
| ":net_resources",
|
| "//base",
|
| "//net/base/registry_controlled_domains",
|
| + "//net/data/ssl/wosign:wosign_domains",
|
| "//third_party/protobuf:protobuf_lite",
|
| "//url:url_features",
|
| ]
|
| @@ -1250,6 +1251,7 @@ test("net_unittests") {
|
| defines = []
|
|
|
| deps = [
|
| + ":cert_verify_proc_whitelist_unittest_data",
|
| ":extras",
|
| ":net",
|
| ":simple_quic_tools",
|
| @@ -1593,6 +1595,21 @@ if (!is_ios) {
|
| }
|
| }
|
|
|
| +action_foreach("cert_verify_proc_whitelist_unittest_data") {
|
| + script = "//net/tools/dafsa/make_dafsa.py"
|
| + sources = [
|
| + "//net/cert/cert_verify_proc_whitelist_unittest1.gperf",
|
| + ]
|
| + outputs = [
|
| + "${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
|
| + ]
|
| + args = [
|
| + "{{source}}",
|
| + rebase_path("${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
|
| + root_build_dir),
|
| + ]
|
| +}
|
| +
|
| # Fuzzers
|
|
|
| # This has a global (InitGlobals) that must always be linked in, so
|
|
|