| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |