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

Side by Side Diff: mandoline/ui/browser/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/aura/screen_mojo.cc ('k') | mandoline/ui/browser/android/android_ui.h » ('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 2014 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 group("browser") {
9 deps = [ 9 deps = [
10 "//mandoline/ui/browser:window_manager", 10 "//mandoline/ui/browser:window_manager",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "android/android_ui.h", 43 "android/android_ui.h",
44 ] 44 ]
45 } else { 45 } else {
46 sources += [ 46 sources += [
47 "desktop/desktop_ui.cc", 47 "desktop/desktop_ui.cc",
48 "desktop/desktop_ui.h", 48 "desktop/desktop_ui.h",
49 ] 49 ]
50 } 50 }
51 51
52 deps = [ 52 deps = [
53 ":interfaces",
53 "//base", 54 "//base",
54 "//components/view_manager/public/cpp", 55 "//components/view_manager/public/cpp",
55 "//components/window_manager:lib", 56 "//components/window_manager:lib",
56 "//mandoline/services/navigation/public/interfaces", 57 "//mandoline/services/navigation/public/interfaces",
57 "//mojo/converters/geometry", 58 "//mojo/converters/geometry",
58 "//skia", 59 "//skia",
59 "//third_party/mojo/src/mojo/public/cpp/bindings", 60 "//third_party/mojo/src/mojo/public/cpp/bindings",
60 "//third_party/mojo/src/mojo/public/cpp/utility", 61 "//third_party/mojo/src/mojo/public/cpp/utility",
61 "//third_party/mojo/src/mojo/public/interfaces/application", 62 "//third_party/mojo/src/mojo/public/interfaces/application",
62 "//ui/gfx/geometry", 63 "//ui/gfx/geometry",
63 "//ui/mojo/events:interfaces", 64 "//ui/mojo/events:interfaces",
64 ] 65 ]
65 66
66 if (!is_android) { 67 if (!is_android) {
67 deps += [ "//mandoline/ui/aura" ] 68 deps += [ "//mandoline/ui/aura" ]
68 } 69 }
69 } 70 }
71
72 mojom("interfaces") {
73 sources = [
74 "omnibox.mojom",
75 ]
76 }
OLDNEW
« no previous file with comments | « mandoline/ui/aura/screen_mojo.cc ('k') | mandoline/ui/browser/android/android_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698