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

Unified Diff: content/public/common/BUILD.gn

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added some missing docs and removed some cruft Created 5 years, 7 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
Index: content/public/common/BUILD.gn
diff --git a/content/public/common/BUILD.gn b/content/public/common/BUILD.gn
index 19b0c80e9e5444f93c250b2e93124f9c60d84480..4e640fe617c1097d96a751397984576b5ba62324 100644
--- a/content/public/common/BUILD.gn
+++ b/content/public/common/BUILD.gn
@@ -38,13 +38,17 @@ source_set("common_sources") {
public_deps = [
"//content/common",
- "//third_party/mojo/src/mojo/public/cpp/bindings",
+ "//mojo/application/public/cpp",
+ "//mojo/application/public/interfaces",
+ "//mojo/shell",
]
deps = [
+ "//mojo/common",
"//net",
"//skia",
"//third_party/WebKit/public:blink_headers",
"//third_party/icu",
+ "//third_party/mojo/src/mojo/public/cpp/bindings",
"//ui/base",
"//ui/gfx",
]
@@ -62,5 +66,12 @@ mojom("mojo_bindings") {
"background_sync.mojom",
"mojo_geoposition.mojom",
"permission_status.mojom",
+ "process_control.mojom",
+ ]
+
+ import_dirs = [ "//mojo/services" ]
+
+ public_deps = [
+ "//mojo/application/public/interfaces",
]
}

Powered by Google App Engine
This is Rietveld 408576698