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 mojo_native_application("window_manager") { | 9 mojo_native_application("window_manager") { |
10 output_name = "example_window_manager" | 10 output_name = "example_window_manager" |
(...skipping 14 matching lines...) Expand all Loading... |
25 "//mojo/services/geometry/public/interfaces", | 25 "//mojo/services/geometry/public/interfaces", |
26 "//mojo/services/input_events/public/interfaces", | 26 "//mojo/services/input_events/public/interfaces", |
27 "//mojo/services/navigation/public/interfaces", | 27 "//mojo/services/navigation/public/interfaces", |
28 "//mojo/services/view_manager/public/cpp", | 28 "//mojo/services/view_manager/public/cpp", |
29 "//services/window_manager:lib", | 29 "//services/window_manager:lib", |
30 "//ui/base", | 30 "//ui/base", |
31 "//ui/events:events", | 31 "//ui/events:events", |
32 "//ui/gfx", | 32 "//ui/gfx", |
33 "//ui/gfx/geometry", | 33 "//ui/gfx/geometry", |
34 "//ui/gl", | 34 "//ui/gl", |
35 "//ui/resources", | |
36 "//url:url", | 35 "//url:url", |
37 ] | 36 ] |
38 } | 37 } |
39 | 38 |
40 mojom("bindings") { | 39 mojom("bindings") { |
41 sources = [ | 40 sources = [ |
42 "debug_panel_host.mojom", | 41 "debug_panel_host.mojom", |
43 "window_manager.mojom", | 42 "window_manager.mojom", |
44 ] | 43 ] |
45 deps = [ | 44 deps = [ |
46 "//mojo/services/geometry/public/interfaces", | 45 "//mojo/services/geometry/public/interfaces", |
47 "//mojo/services/network/public/interfaces", | 46 "//mojo/services/network/public/interfaces", |
48 ] | 47 ] |
49 } | 48 } |
OLD | NEW |