| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//gpu/command_buffer/client", | 43 "//gpu/command_buffer/client", |
| 44 "//gpu/command_buffer/client:gles2_interface", | 44 "//gpu/command_buffer/client:gles2_interface", |
| 45 "//gpu/command_buffer/common:gles2_utils", | 45 "//gpu/command_buffer/common:gles2_utils", |
| 46 "//gpu/command_buffer/service", | 46 "//gpu/command_buffer/service", |
| 47 "//gpu/config:config", | 47 "//gpu/config:config", |
| 48 "//mojo/converters/geometry", | 48 "//mojo/converters/geometry", |
| 49 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
| 50 "//ui/gfx", | 50 "//ui/gfx", |
| 51 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
| 52 "//ui/gl", | 52 "//ui/gl", |
| 53 "//ui/gl/init", |
| 53 "//ui/mojo/geometry:interfaces", | 54 "//ui/mojo/geometry:interfaces", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 if (is_android) { | 57 if (is_android) { |
| 57 deps += [ "//mojo/platform_handle:platform_handle_impl" ] | 58 deps += [ "//mojo/platform_handle:platform_handle_impl" ] |
| 58 } else { | 59 } else { |
| 59 deps += [ "//mojo/platform_handle" ] | 60 deps += [ "//mojo/platform_handle" ] |
| 60 } | 61 } |
| 61 | 62 |
| 62 if (use_ozone) { | 63 if (use_ozone) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//gpu/command_buffer/common", | 95 "//gpu/command_buffer/common", |
| 95 "//gpu/config:config", | 96 "//gpu/config:config", |
| 96 "//mojo/public/cpp/bindings", | 97 "//mojo/public/cpp/bindings", |
| 97 "//mojo/public/cpp/system", | 98 "//mojo/public/cpp/system", |
| 98 "//ui/gfx", | 99 "//ui/gfx", |
| 99 "//ui/gfx/geometry", | 100 "//ui/gfx/geometry", |
| 100 ] | 101 ] |
| 101 | 102 |
| 102 include_dirs = [ "../.." ] | 103 include_dirs = [ "../.." ] |
| 103 } | 104 } |
| OLD | NEW |