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

Unified Diff: content/public/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/content_tests.gypi ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/BUILD.gn
diff --git a/content/public/common/BUILD.gn b/content/public/common/BUILD.gn
index 2df12fd39bbb5bfbf5d3dd81c79526ca8985a600..71186eef0f15cdd164b1e660eaff5ef0b836494d 100644
--- a/content/public/common/BUILD.gn
+++ b/content/public/common/BUILD.gn
@@ -110,6 +110,9 @@ source_set("common_sources") {
"//url/ipc:url_ipc",
]
deps = [
+ # This looks needless as we have //content/common in public_deps, but it's
+ # needed because of allow_circular_includes_from.
+ "//content/common:mojo_bindings_cpp_sources",
"//ipc",
"//media",
"//mojo/common",
@@ -130,7 +133,10 @@ source_set("common_sources") {
]
# //content/common needs to include public headers.
- allow_circular_includes_from = [ "//content/common" ]
+ allow_circular_includes_from = [
+ "//content/common",
+ "//content/common:mojo_bindings_cpp_sources",
+ ]
if (!enable_plugins) {
sources -= [
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698