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

Unified Diff: mojo/application/public/cpp/BUILD.gn

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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: mojo/application/public/cpp/BUILD.gn
diff --git a/mojo/application/public/cpp/BUILD.gn b/mojo/application/public/cpp/BUILD.gn
index e3936152e885c9fd164ec113dc2bbb8f495ff2a4..809abd924d0e4de523fabc56654b4f353c388f7d 100644
--- a/mojo/application/public/cpp/BUILD.gn
+++ b/mojo/application/public/cpp/BUILD.gn
@@ -6,6 +6,21 @@ import("//third_party/mojo/src/mojo/public/mojo_sdk.gni")
# GYP version: mojo/mojo_base.gyp:mojo_application_base
source_set("cpp") {
+ deps = [
+ ":sources",
+ ":init_commandline",
+ ]
+}
+
+# Like the target above, but without special commandline initialization that
+# apps use.
+source_set("cpp_for_chromium") {
+ deps = [
+ ":sources",
+ ]
+}
+
+source_set("sources") {
sources = [
"app_lifetime_helper.h",
"application_connection.h",
@@ -40,6 +55,12 @@ source_set("cpp") {
]
}
+source_set("init_commandline") {
+ sources = [
+ "lib/init_commandline.cc",
+ ]
+}
+
source_set("content_handler") {
sources = [
"content_handler_factory.h",

Powered by Google App Engine
This is Rietveld 408576698