| 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/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
| 7 | 7 |
| 8 visibility = [ "//ui/ozone/*" ] | 8 visibility = [ "//ui/ozone/*" ] |
| 9 | 9 |
| 10 source_set("gbm") { | 10 source_set("gbm") { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "gpu/mock_drm_device.cc", | 155 "gpu/mock_drm_device.cc", |
| 156 "gpu/mock_drm_device.h", | 156 "gpu/mock_drm_device.h", |
| 157 "gpu/mock_dumb_buffer_generator.cc", | 157 "gpu/mock_dumb_buffer_generator.cc", |
| 158 "gpu/mock_dumb_buffer_generator.h", | 158 "gpu/mock_dumb_buffer_generator.h", |
| 159 "gpu/mock_hardware_display_plane_manager.cc", | 159 "gpu/mock_hardware_display_plane_manager.cc", |
| 160 "gpu/mock_hardware_display_plane_manager.h", | 160 "gpu/mock_hardware_display_plane_manager.h", |
| 161 "gpu/mock_scanout_buffer.cc", | 161 "gpu/mock_scanout_buffer.cc", |
| 162 "gpu/mock_scanout_buffer.h", | 162 "gpu/mock_scanout_buffer.h", |
| 163 "gpu/mock_scanout_buffer_generator.cc", | 163 "gpu/mock_scanout_buffer_generator.cc", |
| 164 "gpu/mock_scanout_buffer_generator.h", | 164 "gpu/mock_scanout_buffer_generator.h", |
| 165 "gpu/proxy_helpers_unittest.cc", | |
| 166 "gpu/screen_manager_unittest.cc", | 165 "gpu/screen_manager_unittest.cc", |
| 167 ] | 166 ] |
| 168 | 167 |
| 169 deps = [ | 168 deps = [ |
| 170 ":gbm", | 169 ":gbm", |
| 171 "//skia", | 170 "//skia", |
| 172 "//testing/gtest", | 171 "//testing/gtest", |
| 173 "//third_party/libdrm", | 172 "//third_party/libdrm", |
| 174 "//ui/gfx", | 173 "//ui/gfx", |
| 175 "//ui/ozone:platform", | 174 "//ui/ozone:platform", |
| 176 "//ui/ozone/common", | 175 "//ui/ozone/common", |
| 177 ] | 176 ] |
| 178 } | 177 } |
| OLD | NEW |