| 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("//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("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 assert(use_aura) | |
| 10 | |
| 11 mojo_native_application("browser") { | 9 mojo_native_application("browser") { |
| 12 sources = [ | 10 sources = [ |
| 13 "browser.cc", | 11 "browser.cc", |
| 14 ] | 12 ] |
| 15 | 13 |
| 16 deps = [ | 14 deps = [ |
| 17 ":bindings", | 15 ":bindings", |
| 18 "//base", | 16 "//base", |
| 19 "//cc", | 17 "//cc", |
| 20 "//examples/window_manager:bindings", | 18 "//examples/window_manager:bindings", |
| 21 "//mojo/application", | 19 "//mojo/application", |
| 22 "//mojo/aura", | |
| 23 "//mojo/common", | 20 "//mojo/common", |
| 24 "//mojo/converters/geometry", | 21 "//mojo/converters/geometry", |
| 25 "//mojo/converters/input_events", | 22 "//mojo/converters/input_events", |
| 26 "//mojo/services/geometry/public/interfaces", | 23 "//mojo/services/geometry/public/interfaces", |
| 27 "//mojo/services/input_events/public/interfaces", | 24 "//mojo/services/input_events/public/interfaces", |
| 28 "//mojo/services/navigation/public/interfaces", | 25 "//mojo/services/navigation/public/interfaces", |
| 29 "//mojo/services/view_manager/public/cpp", | 26 "//mojo/services/view_manager/public/cpp", |
| 30 "//mojo/services/view_manager/public/interfaces", | 27 "//mojo/services/view_manager/public/interfaces", |
| 31 "//mojo/views:views", | |
| 32 "//third_party/icu", | 28 "//third_party/icu", |
| 33 "//ui/aura", | |
| 34 "//ui/base", | 29 "//ui/base", |
| 35 "//ui/compositor", | 30 "//ui/events:events", |
| 36 "//ui/gfx", | 31 "//ui/gfx", |
| 37 "//ui/gfx/geometry", | 32 "//ui/gfx/geometry", |
| 38 "//ui/resources", | 33 "//ui/resources", |
| 39 "//ui/views", | |
| 40 "//url", | 34 "//url", |
| 41 ] | 35 ] |
| 42 } | 36 } |
| 43 | 37 |
| 44 mojom("bindings") { | 38 mojom("bindings") { |
| 45 sources = [ | 39 sources = [ |
| 46 "browser_host.mojom", | 40 "browser_host.mojom", |
| 47 ] | 41 ] |
| 48 } | 42 } |
| OLD | NEW |