| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | |
| 6 | |
| 7 source_set("gles2") { | 5 source_set("gles2") { |
| 8 visibility = [ | 6 visibility = [ |
| 9 "//components/view_manager/native_viewport:*", | 7 "//components/view_manager/native_viewport:*", |
| 10 "//mojo/runner:lib", # For android | 8 "//mojo/runner:lib", # For android |
| 11 ] | 9 ] |
| 12 | 10 |
| 13 sources = [ | 11 sources = [ |
| 14 "command_buffer_driver.cc", | 12 "command_buffer_driver.cc", |
| 15 "command_buffer_driver.h", | 13 "command_buffer_driver.h", |
| 16 "command_buffer_impl.cc", | 14 "command_buffer_impl.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 deps = [ | 49 deps = [ |
| 52 "//base", | 50 "//base", |
| 53 "//components/view_manager/public/interfaces", | 51 "//components/view_manager/public/interfaces", |
| 54 "//gpu/command_buffer/common", | 52 "//gpu/command_buffer/common", |
| 55 "//third_party/mojo/src/mojo/public/cpp/bindings", | 53 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 56 "//third_party/mojo/src/mojo/public/cpp/system", | 54 "//third_party/mojo/src/mojo/public/cpp/system", |
| 57 ] | 55 ] |
| 58 | 56 |
| 59 include_dirs = [ "../.." ] | 57 include_dirs = [ "../.." ] |
| 60 } | 58 } |
| OLD | NEW |