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 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ":dri_common", | 90 ":dri_common", |
91 "//base", | 91 "//base", |
92 "//skia", | 92 "//skia", |
93 "//ui/events/ozone:events_ozone_evdev", | 93 "//ui/events/ozone:events_ozone_evdev", |
94 ] | 94 ] |
95 } | 95 } |
96 | 96 |
97 source_set("dri_unittests") { | 97 source_set("dri_unittests") { |
98 testonly = true | 98 testonly = true |
99 sources = [ | 99 sources = [ |
100 "dri_surface_factory_unittest.cc", | |
101 "dri_surface_unittest.cc", | 100 "dri_surface_unittest.cc", |
102 "dri_window_delegate_impl_unittest.cc", | 101 "dri_window_delegate_impl_unittest.cc", |
103 "hardware_display_controller_unittest.cc", | 102 "hardware_display_controller_unittest.cc", |
104 "screen_manager_unittest.cc", | 103 "screen_manager_unittest.cc", |
105 "test/mock_dri_wrapper.cc", | 104 "test/mock_dri_wrapper.cc", |
106 "test/mock_dri_wrapper.h", | 105 "test/mock_dri_wrapper.h", |
107 ] | 106 ] |
108 | 107 |
109 deps = [ | 108 deps = [ |
110 ":dri_common", | 109 ":dri_common", |
(...skipping 27 matching lines...) Expand all Loading... |
138 deps = [ | 137 deps = [ |
139 ":dri_common", | 138 ":dri_common", |
140 "//base", | 139 "//base", |
141 "//skia", | 140 "//skia", |
142 "//ui/events/ozone:events_ozone_evdev", | 141 "//ui/events/ozone:events_ozone_evdev", |
143 ] | 142 ] |
144 | 143 |
145 public_configs = [ ":libgbm" ] | 144 public_configs = [ ":libgbm" ] |
146 } | 145 } |
147 } | 146 } |
OLD | NEW |