| 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/in_flight_change.cc", | 14 "lib/in_flight_change.cc", |
| 15 "lib/in_flight_change.h", | 15 "lib/in_flight_change.h", |
| 16 "lib/output_surface.cc", | 16 "lib/output_surface.cc", |
| 17 "lib/property_type_converters.cc", | 17 "lib/property_type_converters.cc", |
| 18 "lib/scoped_window_ptr.cc", | 18 "lib/scoped_window_ptr.cc", |
| 19 "lib/window.cc", | 19 "lib/window.cc", |
| 20 "lib/window_observer.cc", | 20 "lib/window_observer.cc", |
| 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_impl.cc", | 24 "lib/window_tree_client.cc", |
| 25 "lib/window_tree_client_impl.h", | 25 "lib/window_tree_client_delegate.cc", |
| 26 "lib/window_tree_delegate.cc", | |
| 27 "lib/window_tree_host_factory.cc", | 26 "lib/window_tree_host_factory.cc", |
| 28 "output_surface.h", | 27 "output_surface.h", |
| 29 "property_type_converters.h", | 28 "property_type_converters.h", |
| 30 "scoped_window_ptr.h", | 29 "scoped_window_ptr.h", |
| 31 "window.h", | 30 "window.h", |
| 32 "window_manager_delegate.h", | 31 "window_manager_delegate.h", |
| 33 "window_observer.h", | 32 "window_observer.h", |
| 34 "window_property.h", | 33 "window_property.h", |
| 35 "window_surface.h", | 34 "window_surface.h", |
| 36 "window_surface_client.h", | 35 "window_surface_client.h", |
| 37 "window_tracker.h", | 36 "window_tracker.h", |
| 38 "window_tree_connection.h", | 37 "window_tree_client.h", |
| 39 "window_tree_connection_observer.h", | 38 "window_tree_client_delegate.h", |
| 40 "window_tree_delegate.h", | 39 "window_tree_client_observer.h", |
| 41 "window_tree_host_factory.h", | 40 "window_tree_host_factory.h", |
| 42 ] | 41 ] |
| 43 | 42 |
| 44 public_deps = [ | 43 public_deps = [ |
| 45 "../interfaces", | 44 "../interfaces", |
| 46 ] | 45 ] |
| 47 | 46 |
| 48 deps = [ | 47 deps = [ |
| 49 "//base", | 48 "//base", |
| 50 "//cc", | 49 "//cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 67 "//ui/events/mojo", | 66 "//ui/events/mojo", |
| 68 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
| 69 "//ui/gfx/geometry/mojo", | 68 "//ui/gfx/geometry/mojo", |
| 70 "//ui/gfx/geometry/mojo:interfaces", | 69 "//ui/gfx/geometry/mojo:interfaces", |
| 71 ] | 70 ] |
| 72 | 71 |
| 73 data_deps = [ | 72 data_deps = [ |
| 74 "//components/mus", | 73 "//components/mus", |
| 75 ] | 74 ] |
| 76 } | 75 } |
| OLD | NEW |