| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index ecb397ca087293767b19121e3f9d30c2c7feb5ea..c7d3da8b8370f97356aa58913b8fcf5bbecd7794 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -86,11 +86,22 @@ if (is_linux) {
|
| net_configs += [ "//build/config/linux:libresolv" ]
|
| }
|
|
|
| +source_set("constants") {
|
| + sources = [
|
| + "base/trace_constants.cc",
|
| + "base/trace_constants.h",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + ]
|
| +}
|
| +
|
| component("net") {
|
| sources = gypi_values.net_nacl_common_sources
|
| net_unfiltered_sources = []
|
|
|
| deps = [
|
| + ":constants",
|
| ":net_resources",
|
| "//base",
|
| "//net/base/registry_controlled_domains",
|
| @@ -687,6 +698,7 @@ if (use_v8_in_net) {
|
| ]
|
|
|
| public_deps = [
|
| + ":constants",
|
| ":net",
|
| ]
|
| deps = [
|
|
|