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 "gles2_context.h", | 8 "gles2_context.h", |
9 "input_event_handler.h", | 9 "input_event_handler.h", |
10 "lib/command_buffer_client_impl.cc", | 10 "lib/command_buffer_client_impl.cc", |
11 "lib/command_buffer_client_impl.h", | 11 "lib/command_buffer_client_impl.h", |
12 "lib/context_provider.cc", | 12 "lib/context_provider.cc", |
13 "lib/gles2_context.cc", | 13 "lib/gles2_context.cc", |
14 "lib/gpu_memory_buffer_manager_mus.cc", | |
15 "lib/gpu_memory_buffer_manager_mus.h", | |
16 "lib/gpu_service.cc", | |
17 "lib/gpu_service.h", | |
18 "lib/in_flight_change.cc", | 14 "lib/in_flight_change.cc", |
19 "lib/in_flight_change.h", | 15 "lib/in_flight_change.h", |
20 "lib/output_surface.cc", | 16 "lib/output_surface.cc", |
21 "lib/property_type_converters.cc", | 17 "lib/property_type_converters.cc", |
22 "lib/scoped_window_ptr.cc", | 18 "lib/scoped_window_ptr.cc", |
23 "lib/window.cc", | 19 "lib/window.cc", |
24 "lib/window_observer.cc", | 20 "lib/window_observer.cc", |
25 "lib/window_private.cc", | 21 "lib/window_private.cc", |
26 "lib/window_private.h", | 22 "lib/window_private.h", |
27 "lib/window_surface.cc", | 23 "lib/window_surface.cc", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "//ui/events", | 68 "//ui/events", |
73 "//ui/events/mojo", | 69 "//ui/events/mojo", |
74 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
75 "//ui/gfx/geometry/mojo", | 71 "//ui/gfx/geometry/mojo", |
76 ] | 72 ] |
77 | 73 |
78 data_deps = [ | 74 data_deps = [ |
79 "//components/mus", | 75 "//components/mus", |
80 ] | 76 ] |
81 } | 77 } |
OLD | NEW |