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("gles2") { | 5 source_set("gles2") { |
6 visibility = [ | 6 visibility = [ |
7 "//components/view_manager/native_viewport:*", | 7 "//components/view_manager/surfaces:*", |
8 "//mojo/runner:lib", # For android | 8 "//mojo/runner:lib", # For android |
9 ] | 9 ] |
10 | 10 |
11 sources = [ | 11 sources = [ |
12 "command_buffer_driver.cc", | 12 "command_buffer_driver.cc", |
13 "command_buffer_driver.h", | 13 "command_buffer_driver.h", |
14 "command_buffer_impl.cc", | 14 "command_buffer_impl.cc", |
15 "command_buffer_impl.h", | 15 "command_buffer_impl.h", |
16 "command_buffer_impl_observer.h", | 16 "command_buffer_impl_observer.h", |
17 "gpu_impl.cc", | 17 "gpu_impl.cc", |
18 "gpu_impl.h", | 18 "gpu_impl.h", |
| 19 "gpu_memory_buffer_impl.cc", |
| 20 "gpu_memory_buffer_impl.h", |
| 21 "gpu_memory_tracker.cc", |
| 22 "gpu_memory_tracker.h", |
19 "gpu_state.cc", | 23 "gpu_state.cc", |
20 "gpu_state.h", | 24 "gpu_state.h", |
21 ] | 25 ] |
22 | 26 |
23 public_deps = [ | 27 public_deps = [ |
24 ":lib", | 28 ":lib", |
25 ] | 29 ] |
26 deps = [ | 30 deps = [ |
27 "//base", | 31 "//base", |
28 "//components/view_manager/public/interfaces", | 32 "//components/view_manager/public/interfaces", |
(...skipping 27 matching lines...) Expand all Loading... |
56 "//base", | 60 "//base", |
57 "//cc", | 61 "//cc", |
58 "//components/view_manager/public/interfaces", | 62 "//components/view_manager/public/interfaces", |
59 "//gpu/command_buffer/common", | 63 "//gpu/command_buffer/common", |
60 "//third_party/mojo/src/mojo/public/cpp/bindings", | 64 "//third_party/mojo/src/mojo/public/cpp/bindings", |
61 "//third_party/mojo/src/mojo/public/cpp/system", | 65 "//third_party/mojo/src/mojo/public/cpp/system", |
62 ] | 66 ] |
63 | 67 |
64 include_dirs = [ "../.." ] | 68 include_dirs = [ "../.." ] |
65 } | 69 } |
OLD | NEW |