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:*", |
(...skipping 21 matching lines...) Expand all Loading... |
32 "gpu_memory_tracker.h", | 32 "gpu_memory_tracker.h", |
33 "gpu_state.cc", | 33 "gpu_state.cc", |
34 "gpu_state.h", | 34 "gpu_state.h", |
35 ] | 35 ] |
36 | 36 |
37 public_deps = [ | 37 public_deps = [ |
38 ":lib", | 38 ":lib", |
39 ] | 39 ] |
40 deps = [ | 40 deps = [ |
41 "//base", | 41 "//base", |
| 42 "//components/mus/common:mus_common", |
42 "//components/mus/public/interfaces", | 43 "//components/mus/public/interfaces", |
43 "//gpu/command_buffer/client", | 44 "//gpu/command_buffer/client", |
44 "//gpu/command_buffer/client:gles2_interface", | 45 "//gpu/command_buffer/client:gles2_interface", |
45 "//gpu/command_buffer/common:gles2_utils", | 46 "//gpu/command_buffer/common:gles2_utils", |
46 "//gpu/command_buffer/service", | 47 "//gpu/command_buffer/service", |
47 "//gpu/config:config", | 48 "//gpu/config:config", |
48 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
49 "//mojo/public/cpp/system", | 50 "//mojo/public/cpp/system", |
50 "//ui/gfx", | 51 "//ui/gfx", |
51 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
(...skipping 10 matching lines...) Expand all Loading... |
62 ] | 63 ] |
63 } | 64 } |
64 | 65 |
65 include_dirs = [ "../.." ] | 66 include_dirs = [ "../.." ] |
66 } | 67 } |
67 | 68 |
68 source_set("lib") { | 69 source_set("lib") { |
69 sources = [ | 70 sources = [ |
70 "command_buffer_type_conversions.cc", | 71 "command_buffer_type_conversions.cc", |
71 "command_buffer_type_conversions.h", | 72 "command_buffer_type_conversions.h", |
72 "gpu_memory_buffer_impl.cc", | |
73 "gpu_memory_buffer_impl.h", | |
74 "mojo_buffer_backing.cc", | |
75 "mojo_buffer_backing.h", | |
76 "mojo_gpu_memory_buffer.cc", | |
77 "mojo_gpu_memory_buffer.h", | |
78 "mojo_gpu_memory_buffer_manager.cc", | |
79 "mojo_gpu_memory_buffer_manager.h", | |
80 "raster_thread_helper.cc", | 73 "raster_thread_helper.cc", |
81 "raster_thread_helper.h", | 74 "raster_thread_helper.h", |
82 ] | 75 ] |
83 | 76 |
84 deps = [ | 77 deps = [ |
85 "//base", | 78 "//base", |
86 "//cc", | 79 "//cc", |
87 "//components/mus/public/interfaces", | 80 "//components/mus/public/interfaces", |
88 "//gpu/command_buffer/client", | 81 "//gpu/command_buffer/client", |
89 "//gpu/command_buffer/common", | 82 "//gpu/command_buffer/common", |
90 "//gpu/config:config", | 83 "//gpu/config:config", |
91 "//mojo/public/cpp/bindings", | 84 "//mojo/public/cpp/bindings", |
92 "//mojo/public/cpp/system", | 85 "//mojo/public/cpp/system", |
93 "//ui/gfx", | 86 "//ui/gfx", |
94 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
95 ] | 88 ] |
96 | 89 |
97 include_dirs = [ "../.." ] | 90 include_dirs = [ "../.." ] |
98 } | 91 } |
OLD | NEW |