OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 mojo_native_application("input_manager") { | 8 mojo_native_application("input_manager") { |
9 output_name = "input_manager_service" | 9 output_name = "input_manager_service" |
10 | 10 |
11 sources = [ | 11 sources = [ |
| 12 "main.cc", |
| 13 ] |
| 14 |
| 15 deps = [ |
| 16 ":lib", |
| 17 "//mojo/application", |
| 18 ] |
| 19 } |
| 20 |
| 21 source_set("lib") { |
| 22 sources = [ |
12 "input_associate.cc", | 23 "input_associate.cc", |
13 "input_associate.h", | 24 "input_associate.h", |
14 "input_connection_impl.cc", | 25 "input_connection_impl.cc", |
15 "input_connection_impl.h", | 26 "input_connection_impl.h", |
16 "input_dispatcher_impl.cc", | 27 "input_dispatcher_impl.cc", |
17 "input_dispatcher_impl.h", | 28 "input_dispatcher_impl.h", |
18 "input_manager_app.cc", | 29 "input_manager_app.cc", |
19 "input_manager_app.h", | 30 "input_manager_app.h", |
20 "main.cc", | |
21 ] | 31 ] |
22 | 32 |
23 deps = [ | 33 deps = [ |
24 "//base", | 34 "//base", |
25 "//mojo/application", | 35 "//mojo/application", |
26 "//mojo/common", | 36 "//mojo/common", |
27 "//mojo/common:tracing_impl", | 37 "//mojo/common:tracing_impl", |
28 "//mojo/converters/geometry", | 38 "//mojo/converters/geometry", |
29 "//mojo/environment:chromium", | 39 "//mojo/environment:chromium", |
30 "//mojo/public/cpp/bindings:bindings", | 40 "//mojo/public/cpp/bindings:bindings", |
31 "//mojo/services/geometry/cpp", | 41 "//mojo/services/geometry/cpp", |
32 "//mojo/services/geometry/interfaces", | 42 "//mojo/services/geometry/interfaces", |
33 "//mojo/services/gfx/composition/cpp", | 43 "//mojo/services/gfx/composition/cpp", |
34 "//mojo/services/gfx/composition/interfaces", | 44 "//mojo/services/gfx/composition/interfaces", |
35 "//mojo/services/ui/input/interfaces", | 45 "//mojo/services/ui/input/interfaces", |
36 "//mojo/services/ui/views/cpp", | 46 "//mojo/services/ui/views/cpp", |
37 "//mojo/services/ui/views/interfaces", | 47 "//mojo/services/ui/views/interfaces", |
38 "//mojo/ui/associates", | 48 "//mojo/ui/associates", |
39 ] | 49 ] |
40 } | 50 } |
OLD | NEW |