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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « mandoline/ui/browser/omnibox.mojom ('k') | mandoline/ui/omnibox/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
7 7
8 group("browser") { 8 mojo_native_application("omnibox") {
9 deps = [
10 "//mandoline/ui/browser:window_manager",
11 ]
12 }
13
14 mojo_native_application("window_manager") {
15 sources = [ 9 sources = [
16 "main.cc", 10 "main.cc",
17 ] 11 ]
18 12
19 deps = [ 13 deps = [
20 ":kiosk_wm_lib", 14 ":lib",
21 "//mandoline/services/navigation/public/interfaces", 15 "//mandoline/services/navigation/public/interfaces",
22 "//mojo/application", 16 "//mojo/application",
23 "//mojo/common:common", 17 "//mojo/common:common",
24 "//third_party/mojo/src/mojo/public/cpp/bindings", 18 "//third_party/mojo/src/mojo/public/cpp/bindings",
25 "//third_party/mojo/src/mojo/public/cpp/utility", 19 "//third_party/mojo/src/mojo/public/cpp/utility",
26 "//third_party/mojo/src/mojo/public/interfaces/application", 20 "//third_party/mojo/src/mojo/public/interfaces/application",
27 ] 21 ]
28 } 22 }
29 23
30 source_set("kiosk_wm_lib") { 24 source_set("lib") {
31 sources = [ 25 sources = [
32 "browser.cc", 26 "omnibox_impl.cc",
33 "browser.h", 27 "omnibox_impl.h",
34 "merged_service_provider.cc",
35 "merged_service_provider.h",
36 "navigator_host_impl.cc",
37 "navigator_host_impl.h",
38 ] 28 ]
39 29
40 if (is_android) {
41 sources += [
42 "android/android_ui.cc",
43 "android/android_ui.h",
44 ]
45 } else {
46 sources += [
47 "desktop/desktop_ui.cc",
48 "desktop/desktop_ui.h",
49 ]
50 }
51
52 deps = [ 30 deps = [
53 "//base", 31 "//base",
54 "//components/view_manager/public/cpp", 32 "//components/view_manager/public/cpp",
55 "//components/window_manager:lib", 33 "//components/window_manager:lib",
56 "//mandoline/services/navigation/public/interfaces", 34 "//mandoline/services/navigation/public/interfaces",
35 "//mandoline/ui/aura",
36 "//mandoline/ui/browser:interfaces",
57 "//mojo/converters/geometry", 37 "//mojo/converters/geometry",
58 "//skia", 38 "//skia",
59 "//third_party/mojo/src/mojo/public/cpp/bindings", 39 "//third_party/mojo/src/mojo/public/cpp/bindings",
60 "//third_party/mojo/src/mojo/public/cpp/utility", 40 "//third_party/mojo/src/mojo/public/cpp/utility",
61 "//third_party/mojo/src/mojo/public/interfaces/application", 41 "//third_party/mojo/src/mojo/public/interfaces/application",
62 "//ui/gfx/geometry", 42 "//ui/gfx/geometry",
63 "//ui/mojo/events:interfaces", 43 "//ui/mojo/events:interfaces",
64 ] 44 ]
65
66 if (!is_android) {
67 deps += [ "//mandoline/ui/aura" ]
68 }
69 } 45 }
OLDNEW
« 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