| 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:*", |
| 11 "//components/mus/surfaces:*", | 11 "//components/mus/surfaces:*", |
| 12 "//mojo/shell/standalone:lib", # For android | 12 "//services/shell/standalone:lib", # For android |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "command_buffer_driver.cc", | 16 "command_buffer_driver.cc", |
| 17 "command_buffer_driver.h", | 17 "command_buffer_driver.h", |
| 18 "command_buffer_driver_manager.cc", | 18 "command_buffer_driver_manager.cc", |
| 19 "command_buffer_driver_manager.h", | 19 "command_buffer_driver_manager.h", |
| 20 "command_buffer_impl.cc", | 20 "command_buffer_impl.cc", |
| 21 "command_buffer_impl.h", | 21 "command_buffer_impl.h", |
| 22 "command_buffer_local.cc", | 22 "command_buffer_local.cc", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "//gpu/command_buffer/common", | 96 "//gpu/command_buffer/common", |
| 97 "//gpu/config:config", | 97 "//gpu/config:config", |
| 98 "//mojo/public/cpp/bindings", | 98 "//mojo/public/cpp/bindings", |
| 99 "//mojo/public/cpp/system", | 99 "//mojo/public/cpp/system", |
| 100 "//ui/gfx", | 100 "//ui/gfx", |
| 101 "//ui/gfx/geometry", | 101 "//ui/gfx/geometry", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 include_dirs = [ "../.." ] | 104 include_dirs = [ "../.." ] |
| 105 } | 105 } |
| OLD | NEW |