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

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

Issue 1278803006: Gets //mandoline passing gn check (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: notandroid Created 5 years, 4 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/BUILD.gn ('k') | mandoline/ui/omnibox/BUILD.gn » ('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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
8 8
9 mojo_native_application("browser") { 9 mojo_native_application("browser") {
10 sources = [ 10 sources = [
(...skipping 20 matching lines...) Expand all
31 "navigator_host_impl.cc", 31 "navigator_host_impl.cc",
32 "navigator_host_impl.h", 32 "navigator_host_impl.h",
33 ] 33 ]
34 34
35 deps = [ 35 deps = [
36 "public/interfaces", 36 "public/interfaces",
37 "//base", 37 "//base",
38 "//components/view_manager/public/cpp", 38 "//components/view_manager/public/cpp",
39 "//mandoline/services/navigation/public/interfaces", 39 "//mandoline/services/navigation/public/interfaces",
40 "//mandoline/tab", 40 "//mandoline/tab",
41 "//mojo/application/public/interfaces", 41 "//mojo/application/public/cpp:sources",
42 "//mojo/common:common_base",
42 "//mojo/converters/geometry", 43 "//mojo/converters/geometry",
43 "//skia", 44 "//skia",
44 "//third_party/mojo/src/mojo/public/cpp/bindings", 45 "//third_party/mojo/src/mojo/public/cpp/bindings",
45 "//ui/gfx/geometry", 46 "//ui/gfx/geometry",
46 "//ui/mojo/events:interfaces", 47 "//ui/mojo/events:interfaces",
48 "//url",
47 ] 49 ]
48 50
49 if (is_mac || use_aura) { 51 if (is_mac || use_aura) {
50 sources += [ 52 sources += [
51 "desktop/desktop_ui.cc", 53 "desktop/desktop_ui.cc",
52 "desktop/desktop_ui.h", 54 "desktop/desktop_ui.h",
53 ] 55 ]
54 deps += [ "//mandoline/ui/aura" ] 56 deps += [
57 "//mandoline/ui/aura",
58 "//ui/gfx",
59 "//ui/views",
60 ]
55 } else { 61 } else {
56 assert(is_android) 62 assert(is_android)
57 sources += [ 63 sources += [
58 "android/android_ui.cc", 64 "android/android_ui.cc",
59 "android/android_ui.h", 65 "android/android_ui.h",
60 ] 66 ]
61 } 67 }
62 } 68 }
63 69
64 mojo_native_application("mandoline_browser_apptests") { 70 mojo_native_application("mandoline_browser_apptests") {
65 testonly = true 71 testonly = true
66 72
67 sources = [ 73 sources = [
68 "browser_apptest.cc", 74 "browser_apptest.cc",
69 ] 75 ]
70 76
71 deps = [ 77 deps = [
72 "//base", 78 "//base",
73 "//base/test:test_config", 79 "//base/test:test_config",
80 "//components/view_manager/public/cpp",
74 "//mandoline/tab/public/interfaces", 81 "//mandoline/tab/public/interfaces",
75 "//mandoline/ui/browser:lib", 82 "//mandoline/ui/browser:lib",
83 "//mojo/application/public/cpp:sources",
76 "//mojo/application/public/cpp:test_support", 84 "//mojo/application/public/cpp:test_support",
77 ] 85 ]
78 } 86 }
OLDNEW
« no previous file with comments | « mandoline/ui/aura/BUILD.gn ('k') | mandoline/ui/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698