| 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 source_set("cpp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "context_provider.h", | 7 "context_provider.h", |
| 8 "gles2_context.h", | 8 "gles2_context.h", |
| 9 "input_event_handler.h", | 9 "input_event_handler.h", |
| 10 "lib/command_buffer_client_impl.cc", | 10 "lib/command_buffer_client_impl.cc", |
| 11 "lib/command_buffer_client_impl.h", | 11 "lib/command_buffer_client_impl.h", |
| 12 "lib/context_provider.cc", | 12 "lib/context_provider.cc", |
| 13 "lib/gles2_context.cc", | 13 "lib/gles2_context.cc", |
| 14 "lib/gpu_memory_buffer_manager_mus.cc", |
| 15 "lib/gpu_memory_buffer_manager_mus.h", |
| 16 "lib/gpu_service.cc", |
| 17 "lib/gpu_service.h", |
| 14 "lib/in_flight_change.cc", | 18 "lib/in_flight_change.cc", |
| 15 "lib/in_flight_change.h", | 19 "lib/in_flight_change.h", |
| 16 "lib/output_surface.cc", | 20 "lib/output_surface.cc", |
| 17 "lib/property_type_converters.cc", | 21 "lib/property_type_converters.cc", |
| 18 "lib/scoped_window_ptr.cc", | 22 "lib/scoped_window_ptr.cc", |
| 19 "lib/window.cc", | 23 "lib/window.cc", |
| 20 "lib/window_observer.cc", | 24 "lib/window_observer.cc", |
| 21 "lib/window_private.cc", | 25 "lib/window_private.cc", |
| 22 "lib/window_private.h", | 26 "lib/window_private.h", |
| 23 "lib/window_surface.cc", | 27 "lib/window_surface.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 45 ] | 49 ] |
| 46 | 50 |
| 47 deps = [ | 51 deps = [ |
| 48 "//base", | 52 "//base", |
| 49 "//cc", | 53 "//cc", |
| 50 "//cc/surfaces", | 54 "//cc/surfaces", |
| 51 "//cc/surfaces:surface_id", | 55 "//cc/surfaces:surface_id", |
| 52 "//components/mus/common:mus_common", | 56 "//components/mus/common:mus_common", |
| 53 "//components/mus/gles2:lib", | 57 "//components/mus/gles2:lib", |
| 54 "//components/mus/public/cpp/surfaces", | 58 "//components/mus/public/cpp/surfaces", |
| 59 "//components/mus/public/interfaces", |
| 55 "//gpu/command_buffer/client", | 60 "//gpu/command_buffer/client", |
| 56 "//gpu/command_buffer/client:gles2_cmd_helper", | 61 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 57 "//gpu/command_buffer/client:gles2_implementation", | 62 "//gpu/command_buffer/client:gles2_implementation", |
| 58 "//gpu/command_buffer/client:gles2_interface", | 63 "//gpu/command_buffer/client:gles2_interface", |
| 59 "//gpu/command_buffer/common", | 64 "//gpu/command_buffer/common", |
| 65 "//gpu/ipc/client", |
| 66 "//mojo/public/c/system:for_component", |
| 60 "//mojo/public/cpp/bindings:bindings", | 67 "//mojo/public/cpp/bindings:bindings", |
| 61 "//mojo/public/cpp/system", | 68 "//mojo/public/cpp/system", |
| 62 "//services/shell/public/cpp", | 69 "//services/shell/public/cpp", |
| 63 "//services/shell/public/interfaces", | 70 "//services/shell/public/interfaces", |
| 64 "//ui/display", | 71 "//ui/display", |
| 65 "//ui/events", | 72 "//ui/events", |
| 66 "//ui/events/mojo", | 73 "//ui/events/mojo", |
| 67 "//ui/gfx/geometry", | 74 "//ui/gfx/geometry", |
| 68 "//ui/gfx/geometry/mojo", | 75 "//ui/gfx/geometry/mojo", |
| 69 ] | 76 ] |
| 70 | 77 |
| 71 data_deps = [ | 78 data_deps = [ |
| 72 "//components/mus", | 79 "//components/mus", |
| 73 ] | 80 ] |
| 74 } | 81 } |
| OLD | NEW |