| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 source_set("gles2") { | 7 source_set("gles2") { |
| 8 visibility = [ | 8 visibility = [ |
| 9 "//shell:parent_lib", # For android | 9 "//shell:parent_lib", # For android |
| 10 "//services/native_viewport:*", | 10 "//services/native_viewport:*", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 public_deps = [ | 26 public_deps = [ |
| 27 ":lib", | 27 ":lib", |
| 28 ] | 28 ] |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//gpu/command_buffer/service", | 31 "//gpu/command_buffer/service", |
| 32 "//mojo/converters/geometry", | 32 "//mojo/converters/geometry", |
| 33 "//mojo/public/cpp/bindings", | 33 "//mojo/public/cpp/bindings", |
| 34 "//mojo/services/geometry/public/interfaces", | 34 "//mojo/services/geometry/interfaces", |
| 35 "//mojo/services/gpu/public/interfaces", | 35 "//mojo/services/gpu/interfaces", |
| 36 "//ui/gfx", | 36 "//ui/gfx", |
| 37 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
| 38 "//ui/gl", | 38 "//ui/gl", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 source_set("lib") { | 42 source_set("lib") { |
| 43 sources = [ | 43 sources = [ |
| 44 "command_buffer_type_conversions.cc", | 44 "command_buffer_type_conversions.cc", |
| 45 "command_buffer_type_conversions.h", | 45 "command_buffer_type_conversions.h", |
| 46 "mojo_buffer_backing.cc", | 46 "mojo_buffer_backing.cc", |
| 47 "mojo_buffer_backing.h", | 47 "mojo_buffer_backing.h", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 deps = [ | 50 deps = [ |
| 51 "//base", | 51 "//base", |
| 52 "//gpu/command_buffer/common", | 52 "//gpu/command_buffer/common", |
| 53 "//mojo/public/cpp/bindings", | 53 "//mojo/public/cpp/bindings", |
| 54 "//mojo/public/cpp/system", | 54 "//mojo/public/cpp/system", |
| 55 "//mojo/services/gpu/public/interfaces", | 55 "//mojo/services/gpu/interfaces", |
| 56 ] | 56 ] |
| 57 } | 57 } |
| OLD | NEW |