| 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 sources = [ | 8 sources = [ |
| 9 "command_buffer_driver.cc", | 9 "command_buffer_driver.cc", |
| 10 "command_buffer_driver.h", | 10 "command_buffer_driver.h", |
| 11 "command_buffer_impl.cc", | 11 "command_buffer_impl.cc", |
| 12 "command_buffer_impl.h", | 12 "command_buffer_impl.h", |
| 13 "gpu_impl.cc", | 13 "gpu_impl.cc", |
| 14 "gpu_impl.h", | 14 "gpu_impl.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ | 17 public_deps = [ |
| 18 ":lib", | 18 ":lib", |
| 19 ] | 19 ] |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//gpu/command_buffer/service", | 22 "//gpu/command_buffer/service", |
| 23 "//mojo/converters/geometry", | 23 "//mojo/converters/geometry", |
| 24 "//mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
| 25 "//mojo/services/geometry/public/interfaces", | 25 "//mojo/services/geometry/public/interfaces", |
| 26 "//mojo/services/public/interfaces/gpu", | 26 "//mojo/services/gpu/public/interfaces", |
| 27 "//ui/gfx", | 27 "//ui/gfx", |
| 28 "//ui/gfx/geometry", | 28 "//ui/gfx/geometry", |
| 29 "//ui/gl", | 29 "//ui/gl", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 source_set("lib") { | 33 source_set("lib") { |
| 34 sources = [ | 34 sources = [ |
| 35 "command_buffer_type_conversions.cc", | 35 "command_buffer_type_conversions.cc", |
| 36 "command_buffer_type_conversions.h", | 36 "command_buffer_type_conversions.h", |
| 37 "mojo_buffer_backing.cc", | 37 "mojo_buffer_backing.cc", |
| 38 "mojo_buffer_backing.h", | 38 "mojo_buffer_backing.h", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//gpu/command_buffer/common", | 43 "//gpu/command_buffer/common", |
| 44 "//mojo/public/cpp/bindings", | 44 "//mojo/public/cpp/bindings", |
| 45 "//mojo/public/cpp/system", | 45 "//mojo/public/cpp/system", |
| 46 "//mojo/services/public/interfaces/gpu", | 46 "//mojo/services/gpu/public/interfaces", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| OLD | NEW |