| 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 "//services/service_manager/public/cpp", | 19 "//services/service_manager/public/cpp", |
| 20 "//ui/display", | 20 "//ui/display", |
| 21 "//ui/gfx", | 21 "//ui/gfx", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 if (use_ozone) { | 24 if (use_ozone) { |
| 25 if (is_chromeos) { | 25 if (is_chromeos) { |
| 26 sources += [ | 26 sources += [ |
| 27 "output_protection.cc", |
| 28 "output_protection.h", |
| 27 "screen_manager_ozone_internal.cc", | 29 "screen_manager_ozone_internal.cc", |
| 28 "screen_manager_ozone_internal.h", | 30 "screen_manager_ozone_internal.h", |
| 29 ] | 31 ] |
| 30 | 32 |
| 31 deps += [ | 33 deps += [ |
| 32 "//chromeos", | 34 "//chromeos", |
| 33 "//services/ui/public/interfaces/display", | 35 "//services/ui/public/interfaces/display", |
| 34 "//skia", | 36 "//skia", |
| 35 "//ui/display/manager", | 37 "//ui/display/manager", |
| 36 "//ui/ozone", | 38 "//ui/ozone", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "//ui/gfx", | 71 "//ui/gfx", |
| 70 "//ui/gfx:test_support", | 72 "//ui/gfx:test_support", |
| 71 "//ui/ozone", | 73 "//ui/ozone", |
| 72 ] | 74 ] |
| 73 | 75 |
| 74 data_deps = [ | 76 data_deps = [ |
| 75 "//ui/resources:ui_test_pak_data", | 77 "//ui/resources:ui_test_pak_data", |
| 76 ] | 78 ] |
| 77 } | 79 } |
| 78 } | 80 } |
| OLD | NEW |