| 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 "chromeos/apply_content_protection_task.cc", | 10 "chromeos/apply_content_protection_task.cc", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 testonly = true | 119 testonly = true |
| 120 sources = [ | 120 sources = [ |
| 121 "chromeos/test/action_logger.cc", | 121 "chromeos/test/action_logger.cc", |
| 122 "chromeos/test/action_logger.h", | 122 "chromeos/test/action_logger.h", |
| 123 "chromeos/test/action_logger_util.cc", | 123 "chromeos/test/action_logger_util.cc", |
| 124 "chromeos/test/action_logger_util.h", | 124 "chromeos/test/action_logger_util.h", |
| 125 "chromeos/test/test_display_layout_manager.cc", | 125 "chromeos/test/test_display_layout_manager.cc", |
| 126 "chromeos/test/test_display_layout_manager.h", | 126 "chromeos/test/test_display_layout_manager.h", |
| 127 "chromeos/test/test_native_display_delegate.cc", | 127 "chromeos/test/test_native_display_delegate.cc", |
| 128 "chromeos/test/test_native_display_delegate.h", | 128 "chromeos/test/test_native_display_delegate.h", |
| 129 "test/test_screen.cc", |
| 130 "test/test_screen.h", |
| 129 ] | 131 ] |
| 130 | 132 |
| 131 public_deps = [ | 133 public_deps = [ |
| 132 ":display", | 134 ":display", |
| 133 ] | 135 ] |
| 134 deps = [ | 136 deps = [ |
| 135 "//base", | 137 "//base", |
| 136 "//ui/display/types", | 138 "//ui/display/types", |
| 137 "//ui/gfx", | 139 "//ui/gfx", |
| 138 "//ui/gfx:test_support", | 140 "//ui/gfx:test_support", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 ] | 178 ] |
| 177 } | 179 } |
| 178 | 180 |
| 179 if (is_chromeos && use_ozone) { | 181 if (is_chromeos && use_ozone) { |
| 180 sources -= [ | 182 sources -= [ |
| 181 "chromeos/x11/display_util_x11_unittest.cc", | 183 "chromeos/x11/display_util_x11_unittest.cc", |
| 182 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 184 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 183 ] | 185 ] |
| 184 } | 186 } |
| 185 } | 187 } |
| OLD | NEW |