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/mus:*", | 7 "//components/mus:*", |
8 "//components/mus/ws:*", | 8 "//components/mus/ws:*", |
9 "//components/mus/surfaces:*", | 9 "//components/mus/surfaces:*", |
10 "//mojo/runner:lib", # For android | 10 "//mojo/runner:lib", # For android |
(...skipping 21 matching lines...) Expand all Loading... |
32 ] | 32 ] |
33 deps = [ | 33 deps = [ |
34 "//base", | 34 "//base", |
35 "//components/mus/public/interfaces", | 35 "//components/mus/public/interfaces", |
36 "//gpu/command_buffer/client", | 36 "//gpu/command_buffer/client", |
37 "//gpu/command_buffer/common:gles2_utils", | 37 "//gpu/command_buffer/common:gles2_utils", |
38 "//gpu/command_buffer/service", | 38 "//gpu/command_buffer/service", |
39 "//gpu/config:config", | 39 "//gpu/config:config", |
40 "//mojo/converters/geometry", | 40 "//mojo/converters/geometry", |
41 "//mojo/public/cpp/bindings", | 41 "//mojo/public/cpp/bindings", |
42 "//ui/mojo/geometry:interfaces", | |
43 "//ui/gfx", | 42 "//ui/gfx", |
44 "//ui/gfx/geometry", | 43 "//ui/gfx/geometry", |
45 "//ui/gl", | 44 "//ui/gl", |
| 45 "//ui/mojo/geometry:interfaces", |
46 ] | 46 ] |
47 | 47 |
48 if (is_android) { | 48 if (is_android) { |
49 deps += [ "//mojo/platform_handle:platform_handle_impl" ] | 49 deps += [ "//mojo/platform_handle:platform_handle_impl" ] |
50 } else { | 50 } else { |
51 deps += [ "//mojo/platform_handle:for_shared_library" ] | 51 deps += [ "//mojo/platform_handle:for_shared_library" ] |
52 } | 52 } |
53 | 53 |
54 include_dirs = [ "../.." ] | 54 include_dirs = [ "../.." ] |
55 } | 55 } |
56 | 56 |
57 source_set("lib") { | 57 source_set("lib") { |
58 sources = [ | 58 sources = [ |
59 "command_buffer_type_conversions.cc", | 59 "command_buffer_type_conversions.cc", |
60 "command_buffer_type_conversions.h", | 60 "command_buffer_type_conversions.h", |
61 "mojo_buffer_backing.cc", | 61 "mojo_buffer_backing.cc", |
62 "mojo_buffer_backing.h", | 62 "mojo_buffer_backing.h", |
63 "mojo_gpu_memory_buffer.cc", | 63 "mojo_gpu_memory_buffer.cc", |
64 "mojo_gpu_memory_buffer.h", | 64 "mojo_gpu_memory_buffer.h", |
65 "mojo_gpu_memory_buffer_manager.cc", | 65 "mojo_gpu_memory_buffer_manager.cc", |
66 "mojo_gpu_memory_buffer_manager.h", | 66 "mojo_gpu_memory_buffer_manager.h", |
67 "raster_thread_helper.cc", | 67 "raster_thread_helper.cc", |
68 "raster_thread_helper.h", | 68 "raster_thread_helper.h", |
69 ] | 69 ] |
70 | 70 |
71 deps = [ | 71 deps = [ |
72 "//base", | 72 "//base", |
73 "//cc", | 73 "//cc", |
74 "//components/mus/public/interfaces", | 74 "//components/mus/public/interfaces", |
| 75 "//gpu/command_buffer/client", |
75 "//gpu/command_buffer/common", | 76 "//gpu/command_buffer/common", |
76 "//gpu/command_buffer/client", | |
77 "//gpu/config:config", | 77 "//gpu/config:config", |
78 "//mojo/public/cpp/bindings", | 78 "//mojo/public/cpp/bindings", |
79 "//mojo/public/cpp/system", | 79 "//mojo/public/cpp/system", |
80 "//ui/gfx", | 80 "//ui/gfx", |
81 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
82 ] | 82 ] |
83 | 83 |
84 include_dirs = [ "../.." ] | 84 include_dirs = [ "../.." ] |
85 } | 85 } |
OLD | NEW |