| 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", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//ui/gfx", | 21 "//ui/gfx", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 if (use_ozone && is_chromeos) { | 24 if (use_ozone && is_chromeos) { |
| 25 sources += [ | 25 sources += [ |
| 26 "screen_manager_ozone.cc", | 26 "screen_manager_ozone.cc", |
| 27 "screen_manager_ozone.h", | 27 "screen_manager_ozone.h", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 deps += [ | 30 deps += [ |
| 31 "//chromeos", |
| 31 "//services/ui/public/interfaces/display", | 32 "//services/ui/public/interfaces/display", |
| 32 "//skia", | 33 "//skia", |
| 33 "//ui/display/manager", | 34 "//ui/display/manager", |
| 34 "//ui/ozone", | 35 "//ui/ozone", |
| 35 ] | 36 ] |
| 36 } else { | 37 } else { |
| 37 sources += [ | 38 sources += [ |
| 38 "screen_manager_stub.cc", | 39 "screen_manager_stub.cc", |
| 39 "screen_manager_stub.h", | 40 "screen_manager_stub.h", |
| 40 ] | 41 ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 61 "//ui/gfx", | 62 "//ui/gfx", |
| 62 "//ui/gfx:test_support", | 63 "//ui/gfx:test_support", |
| 63 "//ui/ozone", | 64 "//ui/ozone", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 data_deps = [ | 67 data_deps = [ |
| 67 "//ui/resources:ui_test_pak_data", | 68 "//ui/resources:ui_test_pak_data", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| 70 } | 71 } |
| OLD | NEW |