| 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 20 matching lines...) Expand all Loading... |
| 31 ":lib", | 31 ":lib", |
| 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 "//third_party/mojo/src/mojo/public/cpp/bindings", | 41 "//mojo/public/cpp/bindings", |
| 42 "//ui/mojo/geometry:interfaces", | 42 "//ui/mojo/geometry:interfaces", |
| 43 "//ui/gfx", | 43 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
| 45 "//ui/gl", | 45 "//ui/gl", |
| 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" ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 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/common", | 75 "//gpu/command_buffer/common", |
| 76 "//gpu/command_buffer/client", | 76 "//gpu/command_buffer/client", |
| 77 "//gpu/config:config", | 77 "//gpu/config:config", |
| 78 "//third_party/mojo/src/mojo/public/cpp/bindings", | 78 "//mojo/public/cpp/bindings", |
| 79 "//third_party/mojo/src/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 |