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

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

Issue 1133893003: Omnibox app (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/browser/omnibox.mojom ('k') | mandoline/ui/omnibox/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/ui/omnibox/BUILD.gn
diff --git a/mandoline/ui/browser/BUILD.gn b/mandoline/ui/omnibox/BUILD.gn
similarity index 61%
copy from mandoline/ui/browser/BUILD.gn
copy to mandoline/ui/omnibox/BUILD.gn
index ff404f9cc61827768ad0ab40f218593ec2606b77..f981a0244f4edf2303add09470e7051a8245100f 100644
--- a/mandoline/ui/browser/BUILD.gn
+++ b/mandoline/ui/omnibox/BUILD.gn
@@ -1,23 +1,17 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
+# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//third_party/mojo/src/mojo/public/mojo_application.gni")
import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
-group("browser") {
- deps = [
- "//mandoline/ui/browser:window_manager",
- ]
-}
-
-mojo_native_application("window_manager") {
+mojo_native_application("omnibox") {
sources = [
"main.cc",
]
deps = [
- ":kiosk_wm_lib",
+ ":lib",
"//mandoline/services/navigation/public/interfaces",
"//mojo/application",
"//mojo/common:common",
@@ -27,33 +21,19 @@ mojo_native_application("window_manager") {
]
}
-source_set("kiosk_wm_lib") {
+source_set("lib") {
sources = [
- "browser.cc",
- "browser.h",
- "merged_service_provider.cc",
- "merged_service_provider.h",
- "navigator_host_impl.cc",
- "navigator_host_impl.h",
+ "omnibox_impl.cc",
+ "omnibox_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",
+ "//mandoline/ui/aura",
+ "//mandoline/ui/browser:interfaces",
"//mojo/converters/geometry",
"//skia",
"//third_party/mojo/src/mojo/public/cpp/bindings",
@@ -62,8 +42,4 @@ source_set("kiosk_wm_lib") {
"//ui/gfx/geometry",
"//ui/mojo/events:interfaces",
]
-
- if (!is_android) {
- deps += [ "//mandoline/ui/aura" ]
- }
}
« no previous file with comments | « mandoline/ui/browser/omnibox.mojom ('k') | mandoline/ui/omnibox/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698