| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("display") { | 8 source_set("display") { |
| 9 sources = [ | 9 sources = [ |
| 10 "screen_manager.cc", | 10 "screen_manager.cc", |
| 11 "screen_manager.h", | 11 "screen_manager.h", |
| 12 "screen_manager_delegate.h", | 12 "screen_manager_delegate.h", |
| 13 "viewport_metrics.cc", | 13 "viewport_metrics.cc", |
| 14 "viewport_metrics.h", | 14 "viewport_metrics.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//chrome/common:constants", |
| 20 "//components/prefs", |
| 21 "//components/user_manager", |
| 22 "//services/preferences/public/cpp", |
| 19 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 20 "//ui/display", | 24 "//ui/display", |
| 25 "//ui/display/manager", |
| 21 "//ui/gfx", | 26 "//ui/gfx", |
| 22 ] | 27 ] |
| 23 | 28 |
| 24 if (use_ozone) { | 29 if (use_ozone) { |
| 25 if (is_chromeos) { | 30 if (is_chromeos) { |
| 26 sources += [ | 31 sources += [ |
| 27 "output_protection.cc", | 32 "output_protection.cc", |
| 28 "output_protection.h", | 33 "output_protection.h", |
| 29 "screen_manager_ozone_internal.cc", | 34 "screen_manager_ozone_internal.cc", |
| 30 "screen_manager_ozone_internal.h", | 35 "screen_manager_ozone_internal.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 60 | 65 |
| 61 deps = [ | 66 deps = [ |
| 62 ":display", | 67 ":display", |
| 63 "//base", | 68 "//base", |
| 64 "//base/test:test_support", | 69 "//base/test:test_support", |
| 65 "//services/ui/common:task_runner_test_base", | 70 "//services/ui/common:task_runner_test_base", |
| 66 "//testing/gmock", | 71 "//testing/gmock", |
| 67 "//testing/gtest", | 72 "//testing/gtest", |
| 68 "//ui/base", | 73 "//ui/base", |
| 69 "//ui/display", | 74 "//ui/display", |
| 75 "//ui/display/manager", |
| 70 "//ui/events/devices", | 76 "//ui/events/devices", |
| 71 "//ui/gfx", | 77 "//ui/gfx", |
| 72 "//ui/gfx:test_support", | 78 "//ui/gfx:test_support", |
| 73 "//ui/ozone", | 79 "//ui/ozone", |
| 74 ] | 80 ] |
| 75 | 81 |
| 76 data_deps = [ | 82 data_deps = [ |
| 77 "//ui/resources:ui_test_pak_data", | 83 "//ui/resources:ui_test_pak_data", |
| 78 ] | 84 ] |
| 79 } | 85 } |
| 80 } | 86 } |
| OLD | NEW |