| 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 "bitmap_uploader.h", | 7 "bitmap_uploader.h", |
| 8 "context_provider.h", | 8 "context_provider.h", |
| 9 "gles2_context.h", | 9 "gles2_context.h", |
| 10 "input_event_handler.h", | 10 "input_event_handler.h", |
| 11 "lib/bitmap_uploader.cc", | 11 "lib/bitmap_uploader.cc", |
| 12 "lib/command_buffer_client_impl.cc", | 12 "lib/command_buffer_client_impl.cc", |
| 13 "lib/command_buffer_client_impl.h", | 13 "lib/command_buffer_client_impl.h", |
| 14 "lib/context_provider.cc", | 14 "lib/context_provider.cc", |
| 15 "lib/gles2_context.cc", | 15 "lib/gles2_context.cc", |
| 16 "lib/in_flight_change.cc", | 16 "lib/in_flight_change.cc", |
| 17 "lib/in_flight_change.h", | 17 "lib/in_flight_change.h", |
| 18 "lib/output_surface.cc", | 18 "lib/output_surface.cc", |
| 19 "lib/property_type_converters.cc", | 19 "lib/property_type_converters.cc", |
| 20 "lib/raster_thread_helper.cc", |
| 20 "lib/scoped_window_ptr.cc", | 21 "lib/scoped_window_ptr.cc", |
| 21 "lib/window.cc", | 22 "lib/window.cc", |
| 22 "lib/window_observer.cc", | 23 "lib/window_observer.cc", |
| 23 "lib/window_private.cc", | 24 "lib/window_private.cc", |
| 24 "lib/window_private.h", | 25 "lib/window_private.h", |
| 25 "lib/window_surface.cc", | 26 "lib/window_surface.cc", |
| 26 "lib/window_tree_client.cc", | 27 "lib/window_tree_client.cc", |
| 27 "lib/window_tree_client_delegate.cc", | 28 "lib/window_tree_client_delegate.cc", |
| 28 "lib/window_tree_host_factory.cc", | 29 "lib/window_tree_host_factory.cc", |
| 29 "output_surface.h", | 30 "output_surface.h", |
| 30 "property_type_converters.h", | 31 "property_type_converters.h", |
| 32 "raster_thread_helper.h", |
| 31 "scoped_window_ptr.h", | 33 "scoped_window_ptr.h", |
| 32 "window.h", | 34 "window.h", |
| 33 "window_manager_delegate.cc", | 35 "window_manager_delegate.cc", |
| 34 "window_manager_delegate.h", | 36 "window_manager_delegate.h", |
| 35 "window_observer.h", | 37 "window_observer.h", |
| 36 "window_property.h", | 38 "window_property.h", |
| 37 "window_surface.h", | 39 "window_surface.h", |
| 38 "window_surface_client.h", | 40 "window_surface_client.h", |
| 39 "window_tracker.h", | 41 "window_tracker.h", |
| 40 "window_tree_client.h", | 42 "window_tree_client.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 56 "//services/shell/public/interfaces", | 58 "//services/shell/public/interfaces", |
| 57 "//services/ui/common:mus_common", | 59 "//services/ui/common:mus_common", |
| 58 "//services/ui/public/interfaces", | 60 "//services/ui/public/interfaces", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 deps = [ | 63 deps = [ |
| 62 "//gpu/command_buffer/client:gles2_cmd_helper", | 64 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 63 "//gpu/command_buffer/client:gles2_interface", | 65 "//gpu/command_buffer/client:gles2_interface", |
| 64 "//gpu/ipc/client", | 66 "//gpu/ipc/client", |
| 65 "//services/shell/public/cpp", | 67 "//services/shell/public/cpp", |
| 66 "//services/ui/gles2:lib", | |
| 67 "//services/ui/public/interfaces", | 68 "//services/ui/public/interfaces", |
| 68 "//ui/display", | 69 "//ui/display", |
| 69 "//ui/events", | 70 "//ui/events", |
| 70 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
| 71 ] | 72 ] |
| 72 | 73 |
| 73 data_deps = [ | 74 data_deps = [ |
| 74 "//services/ui", | 75 "//services/ui", |
| 75 ] | 76 ] |
| 76 | 77 |
| 77 defines = [ "GL_GLEXT_PROTOTYPES" ] | 78 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 78 } | 79 } |
| OLD | NEW |