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

Side by Side Diff: mandoline/ui/omnibox/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/ui/browser/main.cc ('k') | mandoline/ui/omnibox/main.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 2015 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 mojo_native_application("omnibox") { 8 mojo_native_application("omnibox") {
9 sources = [ 9 sources = [
10 "main.cc", 10 "main.cc",
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 ":lib", 14 ":lib",
15 "//mandoline/services/navigation/public/interfaces", 15 "//mandoline/services/navigation/public/interfaces",
16 "//mojo/application", 16 "//mojo/application/public/cpp",
17 "//mojo/application/public/interfaces",
18 "//mojo/common:common",
19 "//third_party/mojo/src/mojo/public/cpp/bindings",
20 "//third_party/mojo/src/mojo/public/cpp/utility",
21 ] 17 ]
22 } 18 }
23 19
24 source_set("lib") { 20 source_set("lib") {
25 sources = [ 21 sources = [
26 "omnibox_impl.cc", 22 "omnibox_impl.cc",
27 "omnibox_impl.h", 23 "omnibox_impl.h",
28 ] 24 ]
29 25
30 deps = [ 26 deps = [
31 "//base", 27 "//base",
32 "//components/view_manager/public/cpp", 28 "//components/view_manager/public/cpp",
33 "//mandoline/services/navigation/public/interfaces", 29 "//mandoline/services/navigation/public/interfaces",
34 "//mandoline/ui/aura", 30 "//mandoline/ui/aura",
35 "//mandoline/ui/browser:interfaces", 31 "//mandoline/ui/browser:interfaces",
36 "//mojo/application/public/interfaces", 32 "//mojo/application/public/interfaces",
37 "//mojo/converters/geometry", 33 "//mojo/converters/geometry",
38 "//skia", 34 "//skia",
39 "//third_party/mojo/src/mojo/public/cpp/bindings", 35 "//third_party/mojo/src/mojo/public/cpp/bindings",
40 "//third_party/mojo/src/mojo/public/cpp/utility",
41 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
42 "//ui/mojo/events:interfaces", 37 "//ui/mojo/events:interfaces",
43 ] 38 ]
44 } 39 }
OLDNEW
« no previous file with comments | « mandoline/ui/browser/main.cc ('k') | mandoline/ui/omnibox/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698