Chromium Code Reviews| 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 16 matching lines...) Expand all Loading... | |
| 27 "chromeos/x11/display_snapshot_x11.cc", | 27 "chromeos/x11/display_snapshot_x11.cc", |
| 28 "chromeos/x11/display_snapshot_x11.h", | 28 "chromeos/x11/display_snapshot_x11.h", |
| 29 "chromeos/x11/display_util_x11.cc", | 29 "chromeos/x11/display_util_x11.cc", |
| 30 "chromeos/x11/display_util_x11.h", | 30 "chromeos/x11/display_util_x11.h", |
| 31 "chromeos/x11/native_display_delegate_x11.cc", | 31 "chromeos/x11/native_display_delegate_x11.cc", |
| 32 "chromeos/x11/native_display_delegate_x11.h", | 32 "chromeos/x11/native_display_delegate_x11.h", |
| 33 "chromeos/x11/native_display_event_dispatcher_x11.cc", | 33 "chromeos/x11/native_display_event_dispatcher_x11.cc", |
| 34 "chromeos/x11/native_display_event_dispatcher_x11.h", | 34 "chromeos/x11/native_display_event_dispatcher_x11.h", |
| 35 "display.h", | 35 "display.h", |
| 36 "display_export.h", | 36 "display_export.h", |
| 37 "display_finder.cc", | |
| 38 "display_finder.h", | |
| 37 "display_observer.h", | 39 "display_observer.h", |
| 38 "display_switches.cc", | 40 "display_switches.cc", |
| 39 "display_switches.h", | 41 "display_switches.h", |
| 40 "manager/display_layout.cc", | 42 "manager/display_layout.cc", |
| 41 "manager/display_layout.h", | 43 "manager/display_layout.h", |
| 42 "manager/display_layout_builder.cc", | 44 "manager/display_layout_builder.cc", |
| 43 "manager/display_layout_builder.h", | 45 "manager/display_layout_builder.h", |
| 44 "screen.h", | 46 "screen.h", |
| 45 "win/display_info.cc", | 47 "win/display_info.cc", |
| 46 "win/display_info.h", | 48 "win/display_info.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 151 "chromeos/x11/display_util_x11_unittest.cc", | 153 "chromeos/x11/display_util_x11_unittest.cc", |
| 152 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 154 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 153 "manager/display_layout_builder_unittest.cc", | 155 "manager/display_layout_builder_unittest.cc", |
| 154 "util/display_util_unittest.cc", | 156 "util/display_util_unittest.cc", |
| 155 "util/edid_parser_unittest.cc", | 157 "util/edid_parser_unittest.cc", |
| 156 "win/screen_win_unittest.cc", | 158 "win/screen_win_unittest.cc", |
| 157 ] | 159 ] |
| 158 | 160 |
| 159 deps = [ | 161 deps = [ |
| 160 ":display", | 162 ":display", |
| 163 ":test_support", | |
| 161 "//base", | 164 "//base", |
| 162 "//base/test:run_all_unittests", | 165 "//base/test:run_all_unittests", |
| 163 "//base/test:test_support", | 166 "//base/test:test_support", |
| 164 "//testing/gtest", | 167 "//testing/gtest", |
| 165 "//ui/display/types", | 168 "//ui/display/types", |
| 166 "//ui/display/util", | 169 "//ui/display/util", |
| 167 "//ui/gfx:test_support", | 170 "//ui/gfx:test_support", |
| 168 "//ui/gfx/geometry", | 171 "//ui/gfx/geometry", |
| 169 ] | 172 ] |
| 170 | 173 |
| 171 if (is_chromeos) { | 174 if (is_chromeos) { |
| 172 deps += [ | 175 deps += [ |
| 173 ":test_support", | 176 ":test_support", |
|
robliao
2016/05/04 17:21:50
Remove this line since it's included in the main d
oshima
2016/05/05 18:31:02
Done.
| |
| 174 ":test_util", | 177 ":test_util", |
| 175 ] | 178 ] |
| 176 } | 179 } |
| 177 | 180 |
| 178 if (is_chromeos && use_ozone) { | 181 if (is_chromeos && use_ozone) { |
| 179 sources -= [ | 182 sources -= [ |
| 180 "chromeos/x11/display_util_x11_unittest.cc", | 183 "chromeos/x11/display_util_x11_unittest.cc", |
| 181 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 184 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 182 ] | 185 ] |
| 183 } | 186 } |
| 184 } | 187 } |
| OLD | NEW |