| 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 = [ "//services/native_viewport:*" ] |
| 9 |
| 8 sources = [ | 10 sources = [ |
| 9 "command_buffer_driver.cc", | 11 "command_buffer_driver.cc", |
| 10 "command_buffer_driver.h", | 12 "command_buffer_driver.h", |
| 11 "command_buffer_impl.cc", | 13 "command_buffer_impl.cc", |
| 12 "command_buffer_impl.h", | 14 "command_buffer_impl.h", |
| 15 "gpu_state.cc", |
| 16 "gpu_state.h", |
| 13 "gpu_impl.cc", | 17 "gpu_impl.cc", |
| 14 "gpu_impl.h", | 18 "gpu_impl.h", |
| 15 ] | 19 ] |
| 16 | 20 |
| 17 public_deps = [ | 21 public_deps = [ |
| 18 ":lib", | 22 ":lib", |
| 19 ] | 23 ] |
| 20 deps = [ | 24 deps = [ |
| 21 "//base", | 25 "//base", |
| 22 "//gpu/command_buffer/service", | 26 "//gpu/command_buffer/service", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 39 ] | 43 ] |
| 40 | 44 |
| 41 deps = [ | 45 deps = [ |
| 42 "//base", | 46 "//base", |
| 43 "//gpu/command_buffer/common", | 47 "//gpu/command_buffer/common", |
| 44 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
| 45 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
| 46 "//mojo/services/gpu/public/interfaces", | 50 "//mojo/services/gpu/public/interfaces", |
| 47 ] | 51 ] |
| 48 } | 52 } |
| OLD | NEW |