| 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 component("cpp") { | 5 component("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 "gpu_service.h", |
| 10 "input_event_handler.h", | 11 "input_event_handler.h", |
| 11 "lib/bitmap_uploader.cc", | 12 "lib/bitmap_uploader.cc", |
| 12 "lib/command_buffer_client_impl.cc", | 13 "lib/command_buffer_client_impl.cc", |
| 13 "lib/command_buffer_client_impl.h", | 14 "lib/command_buffer_client_impl.h", |
| 14 "lib/context_provider.cc", | 15 "lib/context_provider.cc", |
| 15 "lib/gles2_context.cc", | 16 "lib/gles2_context.cc", |
| 17 "lib/gpu_memory_buffer_impl.cc", |
| 18 "lib/gpu_memory_buffer_impl.h", |
| 19 "lib/gpu_service.cc", |
| 16 "lib/in_flight_change.cc", | 20 "lib/in_flight_change.cc", |
| 17 "lib/in_flight_change.h", | 21 "lib/in_flight_change.h", |
| 22 "lib/mojo_buffer_backing.cc", |
| 23 "lib/mojo_buffer_backing.h", |
| 24 "lib/mojo_gpu_memory_buffer.cc", |
| 25 "lib/mojo_gpu_memory_buffer.h", |
| 26 "lib/mojo_gpu_memory_buffer_manager.cc", |
| 18 "lib/output_surface.cc", | 27 "lib/output_surface.cc", |
| 19 "lib/property_type_converters.cc", | 28 "lib/property_type_converters.cc", |
| 20 "lib/raster_thread_helper.cc", | 29 "lib/raster_thread_helper.cc", |
| 21 "lib/scoped_window_ptr.cc", | 30 "lib/scoped_window_ptr.cc", |
| 22 "lib/window.cc", | 31 "lib/window.cc", |
| 23 "lib/window_observer.cc", | 32 "lib/window_observer.cc", |
| 24 "lib/window_private.cc", | 33 "lib/window_private.cc", |
| 25 "lib/window_private.h", | 34 "lib/window_private.h", |
| 26 "lib/window_surface.cc", | 35 "lib/window_surface.cc", |
| 27 "lib/window_tree_client.cc", | 36 "lib/window_tree_client.cc", |
| 28 "lib/window_tree_client_delegate.cc", | 37 "lib/window_tree_client_delegate.cc", |
| 29 "lib/window_tree_host_factory.cc", | 38 "lib/window_tree_host_factory.cc", |
| 39 "mojo_gpu_memory_buffer_manager.h", |
| 30 "output_surface.h", | 40 "output_surface.h", |
| 31 "property_type_converters.h", | 41 "property_type_converters.h", |
| 32 "raster_thread_helper.h", | 42 "raster_thread_helper.h", |
| 33 "scoped_window_ptr.h", | 43 "scoped_window_ptr.h", |
| 34 "ui_export.h", | 44 "ui_export.h", |
| 35 "window.h", | 45 "window.h", |
| 36 "window_manager_delegate.cc", | 46 "window_manager_delegate.cc", |
| 37 "window_manager_delegate.h", | 47 "window_manager_delegate.h", |
| 38 "window_observer.h", | 48 "window_observer.h", |
| 39 "window_property.h", | 49 "window_property.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 84 |
| 75 data_deps = [ | 85 data_deps = [ |
| 76 "//services/ui", | 86 "//services/ui", |
| 77 ] | 87 ] |
| 78 | 88 |
| 79 defines = [ | 89 defines = [ |
| 80 "GL_GLEXT_PROTOTYPES", | 90 "GL_GLEXT_PROTOTYPES", |
| 81 "UI_IMPLEMENTATION", | 91 "UI_IMPLEMENTATION", |
| 82 ] | 92 ] |
| 83 } | 93 } |
| OLD | NEW |