| 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 = [ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 # the 'cpp' target. | 91 # the 'cpp' target. |
| 92 visibility = [ | 92 visibility = [ |
| 93 ":cpp", | 93 ":cpp", |
| 94 "//services/ui/demo:lib", | 94 "//services/ui/demo:lib", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 sources = [ | 97 sources = [ |
| 98 "context_provider.cc", | 98 "context_provider.cc", |
| 99 "gles2_context.cc", | 99 "gles2_context.cc", |
| 100 "gles2_context.h", | 100 "gles2_context.h", |
| 101 "gpu_memory_buffer_impl.cc", | |
| 102 "gpu_memory_buffer_impl.h", | |
| 103 "gpu_service.cc", | 101 "gpu_service.cc", |
| 104 "in_flight_change.cc", | 102 "in_flight_change.cc", |
| 105 "in_flight_change.h", | 103 "in_flight_change.h", |
| 106 "mojo_buffer_backing.cc", | 104 "mojo_buffer_backing.cc", |
| 107 "mojo_buffer_backing.h", | 105 "mojo_buffer_backing.h", |
| 108 "mojo_gpu_memory_buffer.cc", | |
| 109 "mojo_gpu_memory_buffer.h", | |
| 110 "mojo_gpu_memory_buffer_manager.cc", | 106 "mojo_gpu_memory_buffer_manager.cc", |
| 111 "property_type_converters.cc", | 107 "property_type_converters.cc", |
| 112 "raster_thread_helper.cc", | 108 "raster_thread_helper.cc", |
| 113 "scoped_window_ptr.cc", | 109 "scoped_window_ptr.cc", |
| 114 "window.cc", | 110 "window.cc", |
| 115 "window_compositor_frame_sink.cc", | 111 "window_compositor_frame_sink.cc", |
| 116 "window_manager_delegate.cc", | 112 "window_manager_delegate.cc", |
| 117 "window_observer.cc", | 113 "window_observer.cc", |
| 118 "window_private.cc", | 114 "window_private.cc", |
| 119 "window_tree_client.cc", | 115 "window_tree_client.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 147 data_deps = [ | 143 data_deps = [ |
| 148 "//services/ui", | 144 "//services/ui", |
| 149 ] | 145 ] |
| 150 | 146 |
| 151 defines = [ "GL_GLEXT_PROTOTYPES" ] | 147 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 152 | 148 |
| 153 if (use_ozone) { | 149 if (use_ozone) { |
| 154 deps += [ "//ui/ozone" ] | 150 deps += [ "//ui/ozone" ] |
| 155 } | 151 } |
| 156 } | 152 } |
| OLD | NEW |