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