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("cpp") { | 5 source_set("cpp") { |
6 sources = [ | 6 sources = [ |
7 "context_provider.h", | 7 "context_provider.h", |
8 "event_matcher.h", | 8 "event_matcher.h", |
9 "lib/context_provider.cc", | 9 "lib/context_provider.cc", |
10 "lib/event_matcher.cc", | 10 "lib/event_matcher.cc", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "scoped_window_ptr.h", | 27 "scoped_window_ptr.h", |
28 "window.h", | 28 "window.h", |
29 "window_manager_delegate.h", | 29 "window_manager_delegate.h", |
30 "window_observer.h", | 30 "window_observer.h", |
31 "window_property.h", | 31 "window_property.h", |
32 "window_surface.h", | 32 "window_surface.h", |
33 "window_surface_client.h", | 33 "window_surface_client.h", |
34 "window_tracker.cc", | 34 "window_tracker.cc", |
35 "window_tracker.h", | 35 "window_tracker.h", |
36 "window_tree_connection.h", | 36 "window_tree_connection.h", |
| 37 "window_tree_connection_observer.h", |
37 "window_tree_delegate.h", | 38 "window_tree_delegate.h", |
38 "window_tree_host_factory.h", | 39 "window_tree_host_factory.h", |
39 ] | 40 ] |
40 | 41 |
41 public_deps = [ | 42 public_deps = [ |
42 "../interfaces", | 43 "../interfaces", |
43 "//mojo/services/network/public/interfaces", | 44 "//mojo/services/network/public/interfaces", |
44 ] | 45 ] |
45 | 46 |
46 deps = [ | 47 deps = [ |
(...skipping 16 matching lines...) Expand all Loading... |
63 ] | 64 ] |
64 | 65 |
65 data_deps = [ | 66 data_deps = [ |
66 "//components/mus", | 67 "//components/mus", |
67 ] | 68 ] |
68 | 69 |
69 if (is_component_build) { | 70 if (is_component_build) { |
70 deps += [ "//mojo/gles2" ] | 71 deps += [ "//mojo/gles2" ] |
71 } | 72 } |
72 } | 73 } |
OLD | NEW |