| 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 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 "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/raster_thread_helper.cc", |
| 21 "lib/scoped_window_ptr.cc", | 21 "lib/scoped_window_ptr.cc", |
| 22 "lib/window.cc", | 22 "lib/window.cc", |
| 23 "lib/window_observer.cc", | 23 "lib/window_observer.cc", |
| 24 "lib/window_private.cc", | 24 "lib/window_private.cc", |
| 25 "lib/window_private.h", | 25 "lib/window_private.h", |
| 26 "lib/window_surface.cc", | 26 "lib/window_surface.cc", |
| 27 "lib/window_tree_client.cc", | 27 "lib/window_tree_client.cc", |
| 28 "lib/window_tree_client_delegate.cc", | 28 "lib/window_tree_client_delegate.cc", |
| 29 "lib/window_tree_host_factory.cc", | 29 "lib/window_tree_host_factory.cc", |
| 30 "output_surface.h", | 30 "output_surface.h", |
| 31 "property_type_converters.h", | 31 "property_type_converters.h", |
| 32 "raster_thread_helper.h", | 32 "raster_thread_helper.h", |
| 33 "scoped_window_ptr.h", | 33 "scoped_window_ptr.h", |
| 34 "ui_export.h", |
| 34 "window.h", | 35 "window.h", |
| 35 "window_manager_delegate.cc", | 36 "window_manager_delegate.cc", |
| 36 "window_manager_delegate.h", | 37 "window_manager_delegate.h", |
| 37 "window_observer.h", | 38 "window_observer.h", |
| 38 "window_property.h", | 39 "window_property.h", |
| 39 "window_surface.h", | 40 "window_surface.h", |
| 40 "window_surface_client.h", | 41 "window_surface_client.h", |
| 41 "window_tracker.h", | 42 "window_tracker.h", |
| 42 "window_tree_client.h", | 43 "window_tree_client.h", |
| 43 "window_tree_client_delegate.h", | 44 "window_tree_client_delegate.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 68 "//services/ui/public/interfaces", | 69 "//services/ui/public/interfaces", |
| 69 "//ui/display", | 70 "//ui/display", |
| 70 "//ui/events", | 71 "//ui/events", |
| 71 "//ui/gfx/geometry", | 72 "//ui/gfx/geometry", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 data_deps = [ | 75 data_deps = [ |
| 75 "//services/ui", | 76 "//services/ui", |
| 76 ] | 77 ] |
| 77 | 78 |
| 78 defines = [ "GL_GLEXT_PROTOTYPES" ] | 79 defines = [ |
| 80 "GL_GLEXT_PROTOTYPES", |
| 81 "UI_IMPLEMENTATION", |
| 82 ] |
| 79 } | 83 } |
| OLD | NEW |