| 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 30 matching lines...) Expand all Loading... |
| 41 "fake_display_snapshot.cc", | 41 "fake_display_snapshot.cc", |
| 42 "fake_display_snapshot.h", | 42 "fake_display_snapshot.h", |
| 43 "ios/screen_ios.mm", | 43 "ios/screen_ios.mm", |
| 44 "mac/screen_mac.mm", | 44 "mac/screen_mac.mm", |
| 45 "manager/display_layout.cc", | 45 "manager/display_layout.cc", |
| 46 "manager/display_layout.h", | 46 "manager/display_layout.h", |
| 47 "manager/display_layout_builder.cc", | 47 "manager/display_layout_builder.cc", |
| 48 "manager/display_layout_builder.h", | 48 "manager/display_layout_builder.h", |
| 49 "manager/display_layout_store.cc", | 49 "manager/display_layout_store.cc", |
| 50 "manager/display_layout_store.h", | 50 "manager/display_layout_store.h", |
| 51 "manager/display_manager.cc", |
| 52 "manager/display_manager.h", |
| 51 "manager/display_manager_utilities.cc", | 53 "manager/display_manager_utilities.cc", |
| 52 "manager/display_manager_utilities.h", | 54 "manager/display_manager_utilities.h", |
| 53 "manager/managed_display_info.cc", | 55 "manager/managed_display_info.cc", |
| 54 "manager/managed_display_info.h", | 56 "manager/managed_display_info.h", |
| 55 "screen.cc", | 57 "screen.cc", |
| 56 "screen.h", | 58 "screen.h", |
| 57 "screen_aura.cc", | 59 "screen_aura.cc", |
| 58 "screen_base.cc", | 60 "screen_base.cc", |
| 59 "screen_base.h", | 61 "screen_base.h", |
| 60 "win/display_info.cc", | 62 "win/display_info.cc", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 testonly = true | 154 testonly = true |
| 153 sources = [ | 155 sources = [ |
| 154 "chromeos/test/action_logger.cc", | 156 "chromeos/test/action_logger.cc", |
| 155 "chromeos/test/action_logger.h", | 157 "chromeos/test/action_logger.h", |
| 156 "chromeos/test/action_logger_util.cc", | 158 "chromeos/test/action_logger_util.cc", |
| 157 "chromeos/test/action_logger_util.h", | 159 "chromeos/test/action_logger_util.h", |
| 158 "chromeos/test/test_display_layout_manager.cc", | 160 "chromeos/test/test_display_layout_manager.cc", |
| 159 "chromeos/test/test_display_layout_manager.h", | 161 "chromeos/test/test_display_layout_manager.h", |
| 160 "chromeos/test/test_native_display_delegate.cc", | 162 "chromeos/test/test_native_display_delegate.cc", |
| 161 "chromeos/test/test_native_display_delegate.h", | 163 "chromeos/test/test_native_display_delegate.h", |
| 164 "test/display_manager_test_api.cc", |
| 165 "test/display_manager_test_api.h", |
| 162 "test/display_matchers.cc", | 166 "test/display_matchers.cc", |
| 163 "test/display_matchers.h", | 167 "test/display_matchers.h", |
| 164 "test/display_test_util.h", | 168 "test/display_test_util.h", |
| 165 "test/test_screen.cc", | 169 "test/test_screen.cc", |
| 166 "test/test_screen.h", | 170 "test/test_screen.h", |
| 167 "win/test/screen_util_win.cc", | 171 "win/test/screen_util_win.cc", |
| 168 "win/test/screen_util_win.h", | 172 "win/test/screen_util_win.h", |
| 169 ] | 173 ] |
| 170 | 174 |
| 171 public_deps = [ | 175 public_deps = [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 sources -= [ "display_change_notifier_unittest.cc" ] | 238 sources -= [ "display_change_notifier_unittest.cc" ] |
| 235 } | 239 } |
| 236 | 240 |
| 237 if (is_chromeos && use_ozone) { | 241 if (is_chromeos && use_ozone) { |
| 238 sources -= [ | 242 sources -= [ |
| 239 "chromeos/x11/display_util_x11_unittest.cc", | 243 "chromeos/x11/display_util_x11_unittest.cc", |
| 240 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 244 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 241 ] | 245 ] |
| 242 } | 246 } |
| 243 } | 247 } |
| OLD | NEW |