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 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
5 source_set("view_manager") { | 6 source_set("view_manager") { |
6 deps = [ | |
7 ":common", | |
8 "//base", | |
9 "//mojo/public/cpp/application:chromium", | |
10 "//mojo/public/interfaces/application", | |
11 "//mojo/services/public/cpp/geometry", | |
12 "//mojo/services/public/interfaces/geometry", | |
13 "//mojo/services/public/interfaces/view_manager", | |
14 "//mojo/services/public/interfaces/window_manager", | |
15 "//skia", | |
16 "//ui/events", | |
17 "//ui/gfx", | |
18 "//ui/gfx/geometry", | |
19 ] | |
20 | |
21 sources = [ | 7 sources = [ |
22 "lib/view.cc", | 8 "lib/view.cc", |
23 "lib/view_manager_client_factory.cc", | 9 "lib/view_manager_client_factory.cc", |
24 "lib/view_manager_client_impl.cc", | 10 "lib/view_manager_client_impl.cc", |
25 "lib/view_manager_client_impl.h", | 11 "lib/view_manager_client_impl.h", |
26 "lib/view_observer.cc", | 12 "lib/view_observer.cc", |
27 "lib/view_private.cc", | 13 "lib/view_private.cc", |
28 "lib/view_private.h", | 14 "lib/view_private.h", |
29 "view.h", | 15 "view.h", |
30 "view_manager.h", | 16 "view_manager.h", |
31 "view_manager_client_factory.h", | 17 "view_manager_client_factory.h", |
32 "view_manager_delegate.h", | 18 "view_manager_delegate.h", |
33 "view_observer.h", | 19 "view_observer.h", |
34 "window_manager_delegate.h", | 20 "window_manager_delegate.h", |
35 ] | 21 ] |
| 22 |
| 23 deps = [ |
| 24 ":common", |
| 25 "//base", |
| 26 "//mojo/public/cpp/application:chromium", |
| 27 "//mojo/public/interfaces/application", |
| 28 "//mojo/services/public/cpp/geometry", |
| 29 "//mojo/services/public/interfaces/geometry", |
| 30 "//mojo/services/public/interfaces/view_manager", |
| 31 "//mojo/services/public/interfaces/window_manager", |
| 32 "//skia", |
| 33 "//ui/events", |
| 34 "//ui/gfx", |
| 35 "//ui/gfx/geometry", |
| 36 ] |
| 37 |
| 38 forward_dependent_configs_from = [ "//skia" ] |
36 } | 39 } |
37 | 40 |
38 source_set("common") { | 41 source_set("common") { |
39 sources = [ | 42 sources = [ |
40 "types.h" | 43 "types.h" |
41 ] | 44 ] |
42 } | 45 } |
OLD | NEW |