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

Unified Diff: net/BUILD.gn

Issue 1098253006: Windows GN component build fixes: net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 130a5971433083e174dd6e2b248ef4fc3096d5e9..44347b16d80d3682cb58da0cdad30b43e1f325b9 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -84,13 +84,13 @@ component("net") {
include_dirs = []
public_deps = [
+ ":net_quic_proto",
"//crypto",
"//crypto:platform",
"//url",
]
deps = [
":net_resources",
- ":net_quic_proto",
"//base",
"//base:prefs",
"//base/third_party/dynamic_annotations",
@@ -510,6 +510,8 @@ grit("net_resources") {
}
proto_library("net_quic_proto") {
+ visibility = [ "//net" ] # Part of the net component.
+
sources = [
"quic/proto/cached_network_parameters.proto",
"quic/proto/source_address_token.proto",
@@ -1148,7 +1150,6 @@ if (is_linux) {
":balsa",
":epoll_server",
":net",
- ":net_quic_proto",
"//base",
"//base/third_party/dynamic_annotations",
"//crypto",
@@ -1181,7 +1182,6 @@ if (is_linux) {
":epoll_server",
":epoll_quic_tools",
":net",
- ":net_quic_proto",
":simple_quic_tools",
"//base",
"//third_party/boringssl",
@@ -1255,7 +1255,6 @@ source_set("simple_quic_tools") {
]
deps = [
":net",
- ":net_quic_proto",
"//base",
"//base/third_party/dynamic_annotations",
"//url",
@@ -1280,10 +1279,10 @@ executable("quic_server") {
]
deps = [
":net",
- ":net_quic_proto",
":simple_quic_tools",
"//base",
"//third_party/boringssl",
+ "//third_party/protobuf:protobuf_lite",
]
}
@@ -1302,7 +1301,6 @@ if (!is_android && !is_mac) {
":extras",
":http_server",
":net",
- ":net_quic_proto",
":simple_quic_tools",
":test_support",
"//base",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698