Chromium Code Reviews| 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 # This is the public target. It contains only the public headers. The | 5 # This is the public target. It contains only the public headers. The |
| 6 # implementation (and private haders) are in 'internal'. | 6 # implementation (and private haders) are in 'internal'. |
| 7 source_set("cpp") { | 7 source_set("cpp") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bitmap_uploader.h", | |
| 10 "input_event_handler.h", | 9 "input_event_handler.h", |
| 11 "output_surface.h", | 10 "output_surface.h", |
| 12 "property_type_converters.h", | 11 "property_type_converters.h", |
| 13 "raster_thread_helper.h", | 12 "raster_thread_helper.h", |
| 14 "scoped_window_ptr.h", | 13 "scoped_window_ptr.h", |
| 14 "software_output_device.h", | |
| 15 "window.h", | 15 "window.h", |
| 16 "window_manager_delegate.h", | 16 "window_manager_delegate.h", |
| 17 "window_observer.h", | 17 "window_observer.h", |
| 18 "window_property.h", | 18 "window_property.h", |
| 19 "window_surface.h", | 19 "window_surface.h", |
| 20 "window_surface_client.h", | 20 "window_surface_client.h", |
| 21 "window_tracker.h", | 21 "window_tracker.h", |
| 22 "window_tree_client.h", | 22 "window_tree_client.h", |
| 23 "window_tree_client_delegate.h", | 23 "window_tree_client_delegate.h", |
| 24 "window_tree_client_observer.h", | 24 "window_tree_client_observer.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 "//base", | 80 "//base", |
| 81 "//mojo/public/cpp/bindings", | 81 "//mojo/public/cpp/bindings", |
| 82 ] | 82 ] |
| 83 } | 83 } |
| 84 | 84 |
| 85 source_set("internal") { | 85 source_set("internal") { |
| 86 # This target is an implementation detail and is intended only to be used by | 86 # This target is an implementation detail and is intended only to be used by |
| 87 # the 'cpp' target. | 87 # the 'cpp' target. |
| 88 visibility = [ ":cpp" ] | 88 visibility = [ |
| 89 ":cpp", | |
| 90 "//services/ui/demo:mus_demo_library", | |
|
sky
2016/08/10 15:10:39
Why do we want to move bitmap_uploader to internal
sadrul
2016/08/10 15:44:01
I have been thinking about it myself since I sent
| |
| 91 ] | |
| 89 | 92 |
| 90 sources = [ | 93 sources = [ |
| 91 "bitmap_uploader.cc", | 94 "bitmap_uploader.cc", |
| 95 "bitmap_uploader.h", | |
| 92 "command_buffer_client_impl.cc", | 96 "command_buffer_client_impl.cc", |
| 93 "command_buffer_client_impl.h", | 97 "command_buffer_client_impl.h", |
| 94 "context_provider.cc", | 98 "context_provider.cc", |
| 95 "context_provider.h", | 99 "context_provider.h", |
| 96 "gles2_context.cc", | 100 "gles2_context.cc", |
| 97 "gles2_context.h", | 101 "gles2_context.h", |
| 98 "in_flight_change.cc", | 102 "in_flight_change.cc", |
| 99 "in_flight_change.h", | 103 "in_flight_change.h", |
| 100 "output_surface.cc", | 104 "output_surface.cc", |
| 101 "property_type_converters.cc", | 105 "property_type_converters.cc", |
| 102 "raster_thread_helper.cc", | 106 "raster_thread_helper.cc", |
| 103 "scoped_window_ptr.cc", | 107 "scoped_window_ptr.cc", |
| 108 "software_output_device.cc", | |
| 104 "window.cc", | 109 "window.cc", |
| 105 "window_manager_delegate.cc", | 110 "window_manager_delegate.cc", |
| 106 "window_observer.cc", | 111 "window_observer.cc", |
| 107 "window_private.cc", | 112 "window_private.cc", |
| 108 "window_surface.cc", | 113 "window_surface.cc", |
| 109 "window_tree_client.cc", | 114 "window_tree_client.cc", |
| 110 "window_tree_client_delegate.cc", | 115 "window_tree_client_delegate.cc", |
| 111 "window_tree_host_factory.cc", | 116 "window_tree_host_factory.cc", |
| 112 ] | 117 ] |
| 113 | 118 |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 134 "//ui/events", | 139 "//ui/events", |
| 135 "//ui/gfx/geometry", | 140 "//ui/gfx/geometry", |
| 136 ] | 141 ] |
| 137 | 142 |
| 138 data_deps = [ | 143 data_deps = [ |
| 139 "//services/ui", | 144 "//services/ui", |
| 140 ] | 145 ] |
| 141 | 146 |
| 142 defines = [ "GL_GLEXT_PROTOTYPES" ] | 147 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 143 } | 148 } |
| OLD | NEW |