| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # This is the public target. It contains only the public headers. The | 7 # This is the public target. It contains only the public headers. The |
| 8 # implementation (and private haders) are in 'internal'. | 8 # implementation (and private haders) are in 'internal'. |
| 9 source_set("cpp") { | 9 source_set("cpp") { |
| 10 sources = [ | 10 sources = [ |
| 11 "compositor_frame_sink.h", | 11 "compositor_frame_sink.h", |
| 12 "context_provider.h", |
| 12 "gpu_service.h", | 13 "gpu_service.h", |
| 13 "input_event_handler.h", | 14 "input_event_handler.h", |
| 14 "mojo_gpu_memory_buffer_manager.h", | 15 "mojo_gpu_memory_buffer_manager.h", |
| 15 "property_type_converters.h", | 16 "property_type_converters.h", |
| 16 "raster_thread_helper.h", | 17 "raster_thread_helper.h", |
| 17 "scoped_window_ptr.h", | 18 "scoped_window_ptr.h", |
| 18 "surface_id_handler.h", | 19 "surface_id_handler.h", |
| 19 "window.h", | 20 "window.h", |
| 20 "window_manager_delegate.h", | 21 "window_manager_delegate.h", |
| 21 "window_observer.h", | 22 "window_observer.h", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 # This target is an implementation detail and is intended only to be used by | 92 # This target is an implementation detail and is intended only to be used by |
| 92 # the 'cpp' target. | 93 # the 'cpp' target. |
| 93 visibility = [ | 94 visibility = [ |
| 94 ":cpp", | 95 ":cpp", |
| 95 "//services/ui/demo:mus_demo_library", | 96 "//services/ui/demo:mus_demo_library", |
| 96 ] | 97 ] |
| 97 | 98 |
| 98 sources = [ | 99 sources = [ |
| 99 "compositor_frame_sink.cc", | 100 "compositor_frame_sink.cc", |
| 100 "context_provider.cc", | 101 "context_provider.cc", |
| 101 "context_provider.h", | |
| 102 "gles2_context.cc", | 102 "gles2_context.cc", |
| 103 "gles2_context.h", | 103 "gles2_context.h", |
| 104 "gpu_memory_buffer_impl.cc", | 104 "gpu_memory_buffer_impl.cc", |
| 105 "gpu_memory_buffer_impl.h", | 105 "gpu_memory_buffer_impl.h", |
| 106 "gpu_service.cc", | 106 "gpu_service.cc", |
| 107 "in_flight_change.cc", | 107 "in_flight_change.cc", |
| 108 "in_flight_change.h", | 108 "in_flight_change.h", |
| 109 "mojo_buffer_backing.cc", | 109 "mojo_buffer_backing.cc", |
| 110 "mojo_buffer_backing.h", | 110 "mojo_buffer_backing.h", |
| 111 "mojo_gpu_memory_buffer.cc", | 111 "mojo_gpu_memory_buffer.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 data_deps = [ | 150 data_deps = [ |
| 151 "//services/ui", | 151 "//services/ui", |
| 152 ] | 152 ] |
| 153 | 153 |
| 154 defines = [ "GL_GLEXT_PROTOTYPES" ] | 154 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 155 | 155 |
| 156 if (use_ozone) { | 156 if (use_ozone) { |
| 157 deps += [ "//ui/ozone" ] | 157 deps += [ "//ui/ozone" ] |
| 158 } | 158 } |
| 159 } | 159 } |
| OLD | NEW |