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

Unified Diff: content/common/BUILD.gn

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 | « content/child/web_url_loader_impl_unittest.cc ('k') | content/common/typemaps.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index 1c90739a1e368c647f5d6dc51472ad6cce3e83e5..df1add11b81ffbcdba300957fe8f74386a66cd37 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -37,6 +37,9 @@ source_set("common") {
"//third_party/WebKit/public:blink_headers",
]
deps = [
+ # This looks needless as we have :mojo_bindings in public_deps, but it's
+ # needed because of allow_circular_includes_from.
+ ":mojo_bindings_cpp_sources",
"//base",
"//base/third_party/dynamic_annotations",
"//build/util:webkit_version",
@@ -104,6 +107,8 @@ source_set("common") {
libs = []
ldflags = []
+ allow_circular_includes_from = [ ":mojo_bindings_cpp_sources" ]
+
if (is_android && use_seccomp_bpf) {
set_sources_assignment_filter([])
sources += [
@@ -245,6 +250,8 @@ mojom("mojo_bindings") {
"render_widget_window_tree_client_factory.mojom",
"service_worker/embedded_worker_setup.mojom",
"storage_partition_service.mojom",
+ "url_loader.mojom",
+ "url_loader_factory.mojom",
"websocket.mojom",
]
« no previous file with comments | « content/child/web_url_loader_impl_unittest.cc ('k') | content/common/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698