Chromium Code Reviews| 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:*", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 deps += [ "//ui/ozone:ozone" ] | 62 deps += [ "//ui/ozone:ozone" ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 include_dirs = [ "../.." ] | 65 include_dirs = [ "../.." ] |
| 66 } | 66 } |
| 67 | 67 |
| 68 source_set("lib") { | 68 source_set("lib") { |
| 69 sources = [ | 69 sources = [ |
| 70 "command_buffer_type_conversions.cc", | 70 "command_buffer_type_conversions.cc", |
| 71 "command_buffer_type_conversions.h", | 71 "command_buffer_type_conversions.h", |
| 72 "gpu_memory_buffer_impl.cc", | |
| 73 "gpu_memory_buffer_impl.h", | |
| 72 "mojo_buffer_backing.cc", | 74 "mojo_buffer_backing.cc", |
| 73 "mojo_buffer_backing.h", | 75 "mojo_buffer_backing.h", |
| 74 "mojo_gpu_memory_buffer.cc", | 76 "mojo_gpu_memory_buffer.cc", |
| 75 "mojo_gpu_memory_buffer.h", | 77 "mojo_gpu_memory_buffer.h", |
| 76 "mojo_gpu_memory_buffer_manager.cc", | 78 "mojo_gpu_memory_buffer_manager.cc", |
| 77 "mojo_gpu_memory_buffer_manager.h", | 79 "mojo_gpu_memory_buffer_manager.h", |
| 80 "ozone_gpu_memory_buffer.cc", | |
| 81 "ozone_gpu_memory_buffer.h", | |
|
Fady Samuel
2016/04/06 22:02:02
move this to an if (use_ozone) block?
rjkroege
2016/04/06 22:45:44
Done.
| |
| 78 "raster_thread_helper.cc", | 82 "raster_thread_helper.cc", |
| 79 "raster_thread_helper.h", | 83 "raster_thread_helper.h", |
| 80 ] | 84 ] |
| 81 | 85 |
| 82 deps = [ | 86 deps = [ |
| 83 "//base", | 87 "//base", |
| 84 "//cc", | 88 "//cc", |
| 85 "//components/mus/public/interfaces", | 89 "//components/mus/public/interfaces", |
| 86 "//gpu/command_buffer/client", | 90 "//gpu/command_buffer/client", |
| 87 "//gpu/command_buffer/common", | 91 "//gpu/command_buffer/common", |
| 88 "//gpu/config:config", | 92 "//gpu/config:config", |
| 89 "//mojo/public/cpp/bindings", | 93 "//mojo/public/cpp/bindings", |
| 90 "//mojo/public/cpp/system", | 94 "//mojo/public/cpp/system", |
| 91 "//ui/gfx", | 95 "//ui/gfx", |
| 92 "//ui/gfx/geometry", | 96 "//ui/gfx/geometry", |
| 93 ] | 97 ] |
| 94 | 98 |
| 95 include_dirs = [ "../.." ] | 99 include_dirs = [ "../.." ] |
| 96 } | 100 } |
| OLD | NEW |