| 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", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "lib/window_private.cc", | 21 "lib/window_private.cc", |
| 22 "lib/window_private.h", | 22 "lib/window_private.h", |
| 23 "lib/window_surface.cc", | 23 "lib/window_surface.cc", |
| 24 "lib/window_tree_client.cc", | 24 "lib/window_tree_client.cc", |
| 25 "lib/window_tree_client_delegate.cc", | 25 "lib/window_tree_client_delegate.cc", |
| 26 "lib/window_tree_host_factory.cc", | 26 "lib/window_tree_host_factory.cc", |
| 27 "output_surface.h", | 27 "output_surface.h", |
| 28 "property_type_converters.h", | 28 "property_type_converters.h", |
| 29 "scoped_window_ptr.h", | 29 "scoped_window_ptr.h", |
| 30 "window.h", | 30 "window.h", |
| 31 "window_manager_delegate.cc", |
| 31 "window_manager_delegate.h", | 32 "window_manager_delegate.h", |
| 32 "window_observer.h", | 33 "window_observer.h", |
| 33 "window_property.h", | 34 "window_property.h", |
| 34 "window_surface.h", | 35 "window_surface.h", |
| 35 "window_surface_client.h", | 36 "window_surface_client.h", |
| 36 "window_tracker.h", | 37 "window_tracker.h", |
| 37 "window_tree_client.h", | 38 "window_tree_client.h", |
| 38 "window_tree_client_delegate.h", | 39 "window_tree_client_delegate.h", |
| 39 "window_tree_client_observer.h", | 40 "window_tree_client_observer.h", |
| 40 "window_tree_host_factory.h", | 41 "window_tree_host_factory.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 65 "//ui/display", | 66 "//ui/display", |
| 66 "//ui/display/mojo", | 67 "//ui/display/mojo", |
| 67 "//ui/events", | 68 "//ui/events", |
| 68 "//ui/gfx/geometry", | 69 "//ui/gfx/geometry", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 data_deps = [ | 72 data_deps = [ |
| 72 "//services/ui", | 73 "//services/ui", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| OLD | NEW |