OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("cpp") { | |
6 sources = [ | |
7 "context_provider.h", | |
8 "gles2_context.h", | |
9 "input_event_handler.h", | |
10 "lib/command_buffer_client_impl.cc", | |
11 "lib/command_buffer_client_impl.h", | |
12 "lib/context_provider.cc", | |
13 "lib/gles2_context.cc", | |
14 "lib/in_flight_change.cc", | |
15 "lib/in_flight_change.h", | |
16 "lib/output_surface.cc", | |
17 "lib/property_type_converters.cc", | |
18 "lib/scoped_window_ptr.cc", | |
19 "lib/window.cc", | |
20 "lib/window_observer.cc", | |
21 "lib/window_private.cc", | |
22 "lib/window_private.h", | |
23 "lib/window_surface.cc", | |
24 "lib/window_tree_client.cc", | |
25 "lib/window_tree_client_delegate.cc", | |
26 "lib/window_tree_host_factory.cc", | |
27 "output_surface.h", | |
28 "property_type_converters.h", | |
29 "scoped_window_ptr.h", | |
30 "window.h", | |
31 "window_manager_delegate.h", | |
32 "window_observer.h", | |
33 "window_property.h", | |
34 "window_surface.h", | |
35 "window_surface_client.h", | |
36 "window_tracker.h", | |
37 "window_tree_client.h", | |
38 "window_tree_client_delegate.h", | |
39 "window_tree_client_observer.h", | |
40 "window_tree_host_factory.h", | |
41 ] | |
42 | |
43 public_deps = [ | |
44 "//base", | |
45 "//cc", | |
46 "//cc/surfaces", | |
47 "//cc/surfaces:surface_id", | |
48 "//components/mus/common:mus_common", | |
49 "//components/mus/public/interfaces", | |
50 "//gpu/command_buffer/client", | |
51 "//gpu/command_buffer/client:gles2_implementation", | |
52 "//gpu/command_buffer/common", | |
53 "//mojo/public/cpp/bindings", | |
54 "//mojo/public/cpp/system", | |
55 "//services/shell/public/interfaces", | |
56 ] | |
57 | |
58 deps = [ | |
59 "//components/mus/gles2:lib", | |
60 "//components/mus/public/interfaces", | |
61 "//gpu/command_buffer/client:gles2_cmd_helper", | |
62 "//gpu/command_buffer/client:gles2_interface", | |
63 "//gpu/ipc/client", | |
64 "//services/shell/public/cpp", | |
65 "//ui/display", | |
66 "//ui/display/mojo", | |
67 "//ui/events", | |
68 "//ui/gfx/geometry", | |
69 ] | |
70 | |
71 data_deps = [ | |
72 "//components/mus", | |
73 ] | |
74 } | |
OLD | NEW |