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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 ] | 139 ] |
140 | 140 |
141 public_configs = [ "//third_party/khronos:khronos_headers" ] | 141 public_configs = [ "//third_party/khronos:khronos_headers" ] |
142 | 142 |
143 defines = [ "OZONE_IMPLEMENTATION" ] | 143 defines = [ "OZONE_IMPLEMENTATION" ] |
144 } | 144 } |
145 | 145 |
146 source_set("gbm_unittests") { | 146 source_set("gbm_unittests") { |
147 testonly = true | 147 testonly = true |
148 sources = [ | 148 sources = [ |
| 149 "common/drm_util_unittest.cc", |
149 "gpu/drm_overlay_validator_unittest.cc", | 150 "gpu/drm_overlay_validator_unittest.cc", |
150 "gpu/drm_window_unittest.cc", | 151 "gpu/drm_window_unittest.cc", |
151 "gpu/fake_plane_info.cc", | 152 "gpu/fake_plane_info.cc", |
152 "gpu/fake_plane_info.h", | 153 "gpu/fake_plane_info.h", |
153 "gpu/hardware_display_controller_unittest.cc", | 154 "gpu/hardware_display_controller_unittest.cc", |
154 "gpu/hardware_display_plane_manager_unittest.cc", | 155 "gpu/hardware_display_plane_manager_unittest.cc", |
155 "gpu/mock_drm_device.cc", | 156 "gpu/mock_drm_device.cc", |
156 "gpu/mock_drm_device.h", | 157 "gpu/mock_drm_device.h", |
157 "gpu/mock_dumb_buffer_generator.cc", | 158 "gpu/mock_dumb_buffer_generator.cc", |
158 "gpu/mock_dumb_buffer_generator.h", | 159 "gpu/mock_dumb_buffer_generator.h", |
(...skipping 10 matching lines...) Expand all Loading... |
169 deps = [ | 170 deps = [ |
170 ":gbm", | 171 ":gbm", |
171 "//skia", | 172 "//skia", |
172 "//testing/gtest", | 173 "//testing/gtest", |
173 "//third_party/libdrm", | 174 "//third_party/libdrm", |
174 "//ui/gfx", | 175 "//ui/gfx", |
175 "//ui/ozone:platform", | 176 "//ui/ozone:platform", |
176 "//ui/ozone/common", | 177 "//ui/ozone/common", |
177 ] | 178 ] |
178 } | 179 } |
OLD | NEW |