| 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 "bitmap_uploader.h", | |
| 12 "gpu_service.h", | 11 "gpu_service.h", |
| 13 "input_event_handler.h", | 12 "input_event_handler.h", |
| 14 "mojo_gpu_memory_buffer_manager.h", | 13 "mojo_gpu_memory_buffer_manager.h", |
| 15 "output_surface.h", | 14 "output_surface.h", |
| 16 "property_type_converters.h", | 15 "property_type_converters.h", |
| 17 "raster_thread_helper.h", | 16 "raster_thread_helper.h", |
| 18 "scoped_window_ptr.h", | 17 "scoped_window_ptr.h", |
| 19 "window.h", | 18 "window.h", |
| 20 "window_manager_delegate.h", | 19 "window_manager_delegate.h", |
| 21 "window_observer.h", | 20 "window_observer.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 81 |
| 83 deps = [ | 82 deps = [ |
| 84 "//base", | 83 "//base", |
| 85 "//mojo/public/cpp/bindings", | 84 "//mojo/public/cpp/bindings", |
| 86 ] | 85 ] |
| 87 } | 86 } |
| 88 | 87 |
| 89 source_set("internal") { | 88 source_set("internal") { |
| 90 # This target is an implementation detail and is intended only to be used by | 89 # This target is an implementation detail and is intended only to be used by |
| 91 # the 'cpp' target. | 90 # the 'cpp' target. |
| 92 visibility = [ ":cpp" ] | 91 visibility = [ |
| 92 ":cpp", |
| 93 "//services/ui/demo:mus_demo_library", |
| 94 ] |
| 93 | 95 |
| 94 sources = [ | 96 sources = [ |
| 95 "bitmap_uploader.cc", | |
| 96 "command_buffer_client_impl.cc", | 97 "command_buffer_client_impl.cc", |
| 97 "command_buffer_client_impl.h", | 98 "command_buffer_client_impl.h", |
| 98 "context_provider.cc", | 99 "context_provider.cc", |
| 99 "context_provider.h", | 100 "context_provider.h", |
| 100 "gles2_context.cc", | 101 "gles2_context.cc", |
| 101 "gles2_context.h", | 102 "gles2_context.h", |
| 102 "gpu_memory_buffer_impl.cc", | 103 "gpu_memory_buffer_impl.cc", |
| 103 "gpu_memory_buffer_impl.h", | 104 "gpu_memory_buffer_impl.h", |
| 104 "gpu_service.cc", | 105 "gpu_service.cc", |
| 105 "in_flight_change.cc", | 106 "in_flight_change.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 data_deps = [ | 151 data_deps = [ |
| 151 "//services/ui", | 152 "//services/ui", |
| 152 ] | 153 ] |
| 153 | 154 |
| 154 defines = [ "GL_GLEXT_PROTOTYPES" ] | 155 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 155 | 156 |
| 156 if (use_ozone) { | 157 if (use_ozone) { |
| 157 deps += [ "//ui/ozone" ] | 158 deps += [ "//ui/ozone" ] |
| 158 } | 159 } |
| 159 } | 160 } |
| OLD | NEW |