| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ] | 133 ] |
| 134 deps = [ | 134 deps = [ |
| 135 "//base", | 135 "//base", |
| 136 "//ui/display/types", | 136 "//ui/display/types", |
| 137 "//ui/gfx", | 137 "//ui/gfx", |
| 138 "//ui/gfx/geometry", | 138 "//ui/gfx/geometry", |
| 139 ] | 139 ] |
| 140 } | 140 } |
| 141 } | 141 } |
| 142 | 142 |
| 143 source_set("test_support") { | 143 static_library("test_support") { |
| 144 testonly = true | 144 testonly = true |
| 145 sources = [ | 145 sources = [ |
| 146 "chromeos/test/action_logger.cc", | 146 "chromeos/test/action_logger.cc", |
| 147 "chromeos/test/action_logger.h", | 147 "chromeos/test/action_logger.h", |
| 148 "chromeos/test/action_logger_util.cc", | 148 "chromeos/test/action_logger_util.cc", |
| 149 "chromeos/test/action_logger_util.h", | 149 "chromeos/test/action_logger_util.h", |
| 150 "chromeos/test/test_display_layout_manager.cc", | 150 "chromeos/test/test_display_layout_manager.cc", |
| 151 "chromeos/test/test_display_layout_manager.h", | 151 "chromeos/test/test_display_layout_manager.h", |
| 152 "chromeos/test/test_native_display_delegate.cc", | 152 "chromeos/test/test_native_display_delegate.cc", |
| 153 "chromeos/test/test_native_display_delegate.h", | 153 "chromeos/test/test_native_display_delegate.h", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 sources -= [ "display_change_notifier_unittest.cc" ] | 218 sources -= [ "display_change_notifier_unittest.cc" ] |
| 219 } | 219 } |
| 220 | 220 |
| 221 if (is_chromeos && use_ozone) { | 221 if (is_chromeos && use_ozone) { |
| 222 sources -= [ | 222 sources -= [ |
| 223 "chromeos/x11/display_util_x11_unittest.cc", | 223 "chromeos/x11/display_util_x11_unittest.cc", |
| 224 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 224 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 225 ] | 225 ] |
| 226 } | 226 } |
| 227 } | 227 } |
| OLD | NEW |