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 "input_event_handler.h", | 9 "input_event_handler.h", |
10 "lib/context_provider.cc", | 10 "lib/context_provider.cc", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "window_surface_client.h", | 34 "window_surface_client.h", |
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_connection_observer.h", |
38 "window_tree_delegate.h", | 38 "window_tree_delegate.h", |
39 "window_tree_host_factory.h", | 39 "window_tree_host_factory.h", |
40 ] | 40 ] |
41 | 41 |
42 public_deps = [ | 42 public_deps = [ |
43 "../interfaces", | 43 "../interfaces", |
44 "//mojo/services/network/public/interfaces", | |
45 ] | 44 ] |
46 | 45 |
47 deps = [ | 46 deps = [ |
48 "//base", | 47 "//base", |
49 "//cc", | 48 "//cc", |
50 "//cc/surfaces", | 49 "//cc/surfaces", |
51 "//cc/surfaces:surface_id", | 50 "//cc/surfaces:surface_id", |
52 "//components/mus/common:mus_common", | 51 "//components/mus/common:mus_common", |
53 "//mojo/converters/geometry", | 52 "//mojo/converters/geometry", |
54 "//mojo/converters/input_events", | 53 "//mojo/converters/input_events", |
(...skipping 10 matching lines...) Expand all Loading... |
65 ] | 64 ] |
66 | 65 |
67 data_deps = [ | 66 data_deps = [ |
68 "//components/mus", | 67 "//components/mus", |
69 ] | 68 ] |
70 | 69 |
71 if (is_component_build) { | 70 if (is_component_build) { |
72 deps += [ "//mojo/gles2" ] | 71 deps += [ "//mojo/gles2" ] |
73 } | 72 } |
74 } | 73 } |
OLD | NEW |