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