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

Side by Side Diff: mandoline/ui/browser/BUILD.gn

Issue 1142323003: Remove duplicate application cpp files in mojo/application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/services/core_services/main.cc ('k') | mandoline/ui/browser/browser.cc » ('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",
11 ] 11 ]
12 } 12 }
13 13
14 mojo_native_application("window_manager") { 14 mojo_native_application("window_manager") {
15 sources = [ 15 sources = [
16 "main.cc", 16 "main.cc",
17 ] 17 ]
18 18
19 deps = [ 19 deps = [
20 ":kiosk_wm_lib", 20 ":kiosk_wm_lib",
21 "//mandoline/services/navigation/public/interfaces", 21 "//mandoline/services/navigation/public/interfaces",
22 "//mojo/application", 22 "//mojo/application/public/cpp",
23 "//mojo/application/public/interfaces",
24 "//mojo/common:common",
25 "//third_party/mojo/src/mojo/public/cpp/bindings",
26 "//third_party/mojo/src/mojo/public/cpp/utility",
27 ] 23 ]
28 } 24 }
29 25
30 source_set("kiosk_wm_lib") { 26 source_set("kiosk_wm_lib") {
31 sources = [ 27 sources = [
32 "browser.cc", 28 "browser.cc",
33 "browser.h", 29 "browser.h",
34 "merged_service_provider.cc", 30 "merged_service_provider.cc",
35 "merged_service_provider.h", 31 "merged_service_provider.h",
36 "navigator_host_impl.cc", 32 "navigator_host_impl.cc",
(...skipping 14 matching lines...) Expand all
51 47
52 deps = [ 48 deps = [
53 ":interfaces", 49 ":interfaces",
54 "//base", 50 "//base",
55 "//components/view_manager/public/cpp", 51 "//components/view_manager/public/cpp",
56 "//mandoline/services/navigation/public/interfaces", 52 "//mandoline/services/navigation/public/interfaces",
57 "//mojo/application/public/interfaces", 53 "//mojo/application/public/interfaces",
58 "//mojo/converters/geometry", 54 "//mojo/converters/geometry",
59 "//skia", 55 "//skia",
60 "//third_party/mojo/src/mojo/public/cpp/bindings", 56 "//third_party/mojo/src/mojo/public/cpp/bindings",
61 "//third_party/mojo/src/mojo/public/cpp/utility",
62 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
63 "//ui/mojo/events:interfaces", 58 "//ui/mojo/events:interfaces",
64 ] 59 ]
65 60
66 if (!is_android) { 61 if (!is_android) {
67 deps += [ "//mandoline/ui/aura" ] 62 deps += [ "//mandoline/ui/aura" ]
68 } 63 }
69 } 64 }
70 65
71 mojom("interfaces") { 66 mojom("interfaces") {
72 sources = [ 67 sources = [
73 "omnibox.mojom", 68 "omnibox.mojom",
74 "view_embedder.mojom", 69 "view_embedder.mojom",
75 ] 70 ]
76 71
77 deps = [ 72 deps = [
78 "//mojo/application/public/interfaces", 73 "//mojo/application/public/interfaces",
79 ] 74 ]
80 } 75 }
OLDNEW
« no previous file with comments | « mandoline/services/core_services/main.cc ('k') | mandoline/ui/browser/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698