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

Unified Diff: mandoline/services/core_services/BUILD.gn

Issue 1278803006: Gets //mandoline passing gn check (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: notandroid Created 5 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 | « mandoline/app/desktop/main.cc ('k') | mandoline/services/core_services/application_delegate_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/services/core_services/BUILD.gn
diff --git a/mandoline/services/core_services/BUILD.gn b/mandoline/services/core_services/BUILD.gn
index 84f6f2849746c9ac51aa70d73ab3bde2ebd24466..cb8d9f92e004a5f2ed8abf691766834a34a801be 100644
--- a/mandoline/services/core_services/BUILD.gn
+++ b/mandoline/services/core_services/BUILD.gn
@@ -36,6 +36,8 @@ mojo_native_application("core_services") {
source_set("sources") {
sources = [
+ "application_delegate_factory.h",
+ "application_delegate_factory_linux.cc",
"core_services_application_delegate.cc",
"main.cc",
]
@@ -51,9 +53,11 @@ source_set("sources") {
"//mojo/message_pump",
"//mojo/services/tracing:lib",
"//third_party/mojo/src/mojo/public/cpp/bindings",
+ "//url",
]
if (!is_android) {
+ sources += [ "application_delegate_factory_notandroid.cc" ]
deps += [
"//components/resource_provider:lib",
"//components/view_manager:lib",
@@ -61,8 +65,10 @@ source_set("sources") {
]
}
- if (is_linux && !is_android) {
+ if (is_linux) {
deps += [ "//components/font_service:lib" ]
+ } else {
+ sources += [ "application_delegate_factory_default.cc" ]
}
if (use_aura) {
@@ -70,5 +76,6 @@ source_set("sources") {
"//components/view_manager/public/cpp",
"//mandoline/ui/omnibox:lib",
]
+ sources += [ "application_delegate_factory_aura.cc" ]
}
}
« no previous file with comments | « mandoline/app/desktop/main.cc ('k') | mandoline/services/core_services/application_delegate_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698