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 group("wm_flow") { | 9 group("wm_flow") { |
10 deps = [ | 10 deps = [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 "wm/wm.cc", | 21 "wm/wm.cc", |
22 "wm/frame_controller.cc", | 22 "wm/frame_controller.cc", |
23 "wm/frame_controller.h", | 23 "wm/frame_controller.h", |
24 ] | 24 ] |
25 | 25 |
26 deps = [ | 26 deps = [ |
27 ":wm_bindings", | 27 ":wm_bindings", |
28 "//base", | 28 "//base", |
29 "//mojo/application", | 29 "//mojo/application", |
30 "//mojo/converters/geometry", | 30 "//mojo/converters/geometry", |
| 31 "//mojo/public/interfaces/application", |
31 "//mojo/services/input_events/public/interfaces", | 32 "//mojo/services/input_events/public/interfaces", |
32 "//mojo/services/view_manager/public/cpp", | 33 "//mojo/services/view_manager/public/cpp", |
33 "//services/window_manager:lib", | 34 "//services/window_manager:lib", |
34 "//skia", | 35 "//skia", |
35 "//ui/gfx/geometry", | 36 "//ui/gfx/geometry", |
36 "//url", | 37 "//url", |
37 ] | 38 ] |
38 } | 39 } |
39 | 40 |
40 mojo_native_application("app") { | 41 mojo_native_application("app") { |
41 output_name = "wm_flow_app" | 42 output_name = "wm_flow_app" |
42 | 43 |
43 sources = [ | 44 sources = [ |
44 "app/app.cc", | 45 "app/app.cc", |
45 ] | 46 ] |
46 | 47 |
47 deps = [ | 48 deps = [ |
48 ":embedder_bindings", | 49 ":embedder_bindings", |
49 ":embeddee_bindings", | 50 ":embeddee_bindings", |
50 "//base", | 51 "//base", |
51 "//examples/bitmap_uploader", | 52 "//examples/bitmap_uploader", |
52 "//mojo/application", | 53 "//mojo/application", |
| 54 "//mojo/common", |
53 "//mojo/public/interfaces/application:application", | 55 "//mojo/public/interfaces/application:application", |
54 "//mojo/services/view_manager/public/cpp", | 56 "//mojo/services/view_manager/public/cpp", |
55 "//services/window_manager:lib", | 57 "//services/window_manager:lib", |
56 "//skia", | 58 "//skia", |
57 "//url", | 59 "//url", |
58 ] | 60 ] |
59 } | 61 } |
60 | 62 |
61 mojo_native_application("embedded") { | 63 mojo_native_application("embedded") { |
62 output_name = "wm_flow_embedded" | 64 output_name = "wm_flow_embedded" |
(...skipping 25 matching lines...) Expand all Loading... |
88 sources = [ | 90 sources = [ |
89 "app/embedder.mojom", | 91 "app/embedder.mojom", |
90 ] | 92 ] |
91 } | 93 } |
92 | 94 |
93 mojom("embeddee_bindings") { | 95 mojom("embeddee_bindings") { |
94 sources = [ | 96 sources = [ |
95 "embedded/embeddee.mojom", | 97 "embedded/embeddee.mojom", |
96 ] | 98 ] |
97 } | 99 } |
OLD | NEW |