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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("display") { | 8 component("display") { |
9 sources = [ | 9 sources = [ |
10 "android/screen_android.cc", | 10 "android/screen_android.cc", |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 "chromeos/apply_content_protection_task_unittest.cc", | 183 "chromeos/apply_content_protection_task_unittest.cc", |
184 "chromeos/configure_displays_task_unittest.cc", | 184 "chromeos/configure_displays_task_unittest.cc", |
185 "chromeos/display_configurator_unittest.cc", | 185 "chromeos/display_configurator_unittest.cc", |
186 "chromeos/query_content_protection_task_unittest.cc", | 186 "chromeos/query_content_protection_task_unittest.cc", |
187 "chromeos/update_display_configuration_task_unittest.cc", | 187 "chromeos/update_display_configuration_task_unittest.cc", |
188 "chromeos/x11/display_util_x11_unittest.cc", | 188 "chromeos/x11/display_util_x11_unittest.cc", |
189 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 189 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
190 "display_change_notifier_unittest.cc", | 190 "display_change_notifier_unittest.cc", |
191 "display_list_unittest.cc", | 191 "display_list_unittest.cc", |
192 "display_unittest.cc", | 192 "display_unittest.cc", |
| 193 "fake_display_snapshot_unittests.cc", |
193 "manager/display_layout_builder_unittest.cc", | 194 "manager/display_layout_builder_unittest.cc", |
194 "manager/display_layout_unittest.cc", | 195 "manager/display_layout_unittest.cc", |
195 "manager/display_manager_utilities_unittest.cc", | 196 "manager/display_manager_utilities_unittest.cc", |
196 "manager/managed_display_info_unittest.cc", | 197 "manager/managed_display_info_unittest.cc", |
197 "screen_unittest.cc", | 198 "screen_unittest.cc", |
198 "util/display_util_unittest.cc", | 199 "util/display_util_unittest.cc", |
199 "util/edid_parser_unittest.cc", | 200 "util/edid_parser_unittest.cc", |
200 "win/scaling_util_unittest.cc", | 201 "win/scaling_util_unittest.cc", |
201 "win/screen_win_unittest.cc", | 202 "win/screen_win_unittest.cc", |
202 ] | 203 ] |
(...skipping 25 matching lines...) Expand all Loading... |
228 sources -= [ "display_change_notifier_unittest.cc" ] | 229 sources -= [ "display_change_notifier_unittest.cc" ] |
229 } | 230 } |
230 | 231 |
231 if (is_chromeos && use_ozone) { | 232 if (is_chromeos && use_ozone) { |
232 sources -= [ | 233 sources -= [ |
233 "chromeos/x11/display_util_x11_unittest.cc", | 234 "chromeos/x11/display_util_x11_unittest.cc", |
234 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 235 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
235 ] | 236 ] |
236 } | 237 } |
237 } | 238 } |
OLD | NEW |