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 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
6 source_set("view_manager") { | 6 source_set("view_manager") { |
7 sources = [ | 7 sources = [ |
8 "lib/view.cc", | 8 "lib/view.cc", |
9 "lib/view_manager_client_factory.cc", | 9 "lib/view_manager_client_factory.cc", |
10 "lib/view_manager_client_impl.cc", | 10 "lib/view_manager_client_impl.cc", |
11 "lib/view_manager_client_impl.h", | 11 "lib/view_manager_client_impl.h", |
12 "lib/view_manager_context.cc", | 12 "lib/view_manager_context.cc", |
13 "lib/view_observer.cc", | 13 "lib/view_observer.cc", |
14 "lib/view_private.cc", | 14 "lib/view_private.cc", |
15 "lib/view_private.h", | 15 "lib/view_private.h", |
16 "view.h", | 16 "view.h", |
17 "view_manager.h", | 17 "view_manager.h", |
18 "view_manager_client_factory.h", | 18 "view_manager_client_factory.h", |
19 "view_manager_context.h", | 19 "view_manager_context.h", |
20 "view_manager_delegate.h", | 20 "view_manager_delegate.h", |
21 "view_observer.h", | 21 "view_observer.h", |
| 22 "view_property.h", |
22 "view_tracker.cc", | 23 "view_tracker.cc", |
23 "view_tracker.h", | 24 "view_tracker.h", |
24 "window_manager_delegate.h", | 25 "window_manager_delegate.h", |
25 ] | 26 ] |
26 | 27 |
27 public_deps = [ | 28 public_deps = [ |
28 ":common", | 29 ":common", |
29 ] | 30 ] |
30 deps = [ | 31 deps = [ |
31 "//base", | 32 "//base", |
(...skipping 10 matching lines...) Expand all Loading... |
42 | 43 |
43 source_set("common") { | 44 source_set("common") { |
44 sources = [ | 45 sources = [ |
45 "ids.h", | 46 "ids.h", |
46 "types.h", | 47 "types.h", |
47 ] | 48 ] |
48 public_deps = [ | 49 public_deps = [ |
49 "//base", | 50 "//base", |
50 ] | 51 ] |
51 } | 52 } |
OLD | NEW |