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

Unified Diff: mandoline/ui/browser/BUILD.gn

Issue 1136593004: Add a simple browser UI (with url bar) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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
« no previous file with comments | « mandoline/ui/aura/surface_context_factory.cc ('k') | mandoline/ui/browser/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/ui/browser/BUILD.gn
diff --git a/mandoline/ui/browser/BUILD.gn b/mandoline/ui/browser/BUILD.gn
index 3a2107179eb1f1e20a33a144aa6626e961f3ca8e..ff404f9cc61827768ad0ab40f218593ec2606b77 100644
--- a/mandoline/ui/browser/BUILD.gn
+++ b/mandoline/ui/browser/BUILD.gn
@@ -21,12 +21,9 @@ mojo_native_application("window_manager") {
"//mandoline/services/navigation/public/interfaces",
"//mojo/application",
"//mojo/common:common",
- "//mojo/converters/geometry",
"//third_party/mojo/src/mojo/public/cpp/bindings",
"//third_party/mojo/src/mojo/public/cpp/utility",
"//third_party/mojo/src/mojo/public/interfaces/application",
- "//ui/gfx/geometry",
- "//ui/mojo/events:interfaces",
]
}
@@ -40,16 +37,33 @@ source_set("kiosk_wm_lib") {
"navigator_host_impl.h",
]
+ if (is_android) {
+ sources += [
+ "android/android_ui.cc",
+ "android/android_ui.h",
+ ]
+ } else {
+ sources += [
+ "desktop/desktop_ui.cc",
+ "desktop/desktop_ui.h",
+ ]
+ }
+
deps = [
"//base",
"//components/view_manager/public/cpp",
"//components/window_manager:lib",
"//mandoline/services/navigation/public/interfaces",
"//mojo/converters/geometry",
+ "//skia",
"//third_party/mojo/src/mojo/public/cpp/bindings",
"//third_party/mojo/src/mojo/public/cpp/utility",
"//third_party/mojo/src/mojo/public/interfaces/application",
"//ui/gfx/geometry",
"//ui/mojo/events:interfaces",
]
+
+ if (!is_android) {
+ deps += [ "//mandoline/ui/aura" ]
+ }
}
« no previous file with comments | « mandoline/ui/aura/surface_context_factory.cc ('k') | mandoline/ui/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698