| 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 source_set("gles2") { | 7 source_set("gles2") { |
| 8 visibility = [ | 8 visibility = [ |
| 9 "//components/mus:*", | 9 "//components/mus:*", |
| 10 "//components/mus/ws:*", | 10 "//components/mus/ws:*", |
| 11 "//components/mus/surfaces:*", | 11 "//components/mus/surfaces:*", |
| 12 "//mojo/shell/standalone:lib", # For android | 12 "//mojo/shell/standalone:lib", # For android |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "command_buffer_driver.cc", | 16 "command_buffer_driver.cc", |
| 17 "command_buffer_driver.h", | 17 "command_buffer_driver.h", |
| 18 "command_buffer_driver_manager.cc", | 18 "command_buffer_driver_manager.cc", |
| 19 "command_buffer_driver_manager.h", | 19 "command_buffer_driver_manager.h", |
| 20 "command_buffer_impl.cc", | 20 "command_buffer_impl.cc", |
| 21 "command_buffer_impl.h", | 21 "command_buffer_impl.h", |
| 22 "command_buffer_local.cc", | 22 "command_buffer_local.cc", |
| 23 "command_buffer_local.h", | 23 "command_buffer_local.h", |
| 24 "command_buffer_local_client.h", | 24 "command_buffer_local_client.h", |
| 25 "command_buffer_task_runner.cc", | 25 "command_buffer_task_runner.cc", |
| 26 "command_buffer_task_runner.h", | 26 "command_buffer_task_runner.h", |
| 27 "gl_surface_adapter.cc", |
| 28 "gl_surface_adapter.h", |
| 27 "gpu_impl.cc", | 29 "gpu_impl.cc", |
| 28 "gpu_impl.h", | 30 "gpu_impl.h", |
| 29 "gpu_memory_tracker.cc", | 31 "gpu_memory_tracker.cc", |
| 30 "gpu_memory_tracker.h", | 32 "gpu_memory_tracker.h", |
| 31 "gpu_state.cc", | 33 "gpu_state.cc", |
| 32 "gpu_state.h", | 34 "gpu_state.h", |
| 33 ] | 35 ] |
| 34 | 36 |
| 35 public_deps = [ | 37 public_deps = [ |
| 36 ":lib", | 38 ":lib", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "//gpu/command_buffer/common", | 87 "//gpu/command_buffer/common", |
| 86 "//gpu/config:config", | 88 "//gpu/config:config", |
| 87 "//mojo/public/cpp/bindings", | 89 "//mojo/public/cpp/bindings", |
| 88 "//mojo/public/cpp/system", | 90 "//mojo/public/cpp/system", |
| 89 "//ui/gfx", | 91 "//ui/gfx", |
| 90 "//ui/gfx/geometry", | 92 "//ui/gfx/geometry", |
| 91 ] | 93 ] |
| 92 | 94 |
| 93 include_dirs = [ "../.." ] | 95 include_dirs = [ "../.." ] |
| 94 } | 96 } |
| OLD | NEW |