| 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 26 matching lines...) Expand all Loading... |
| 37 sources += [ | 37 sources += [ |
| 38 "screen_manager_stub.cc", | 38 "screen_manager_stub.cc", |
| 39 "screen_manager_stub.h", | 39 "screen_manager_stub.h", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 if (use_ozone && is_chromeos) { | 44 if (use_ozone && is_chromeos) { |
| 45 test("display_service_unittests") { | 45 test("display_service_unittests") { |
| 46 sources = [ | 46 sources = [ |
| 47 "run_all_unittests.cc", |
| 47 "screen_manager_ozone_unittests.cc", | 48 "screen_manager_ozone_unittests.cc", |
| 48 ] | 49 ] |
| 49 | 50 |
| 50 deps = [ | 51 deps = [ |
| 51 ":display", | 52 ":display", |
| 52 "//base", | 53 "//base", |
| 53 "//base/test:run_all_unittests", | |
| 54 "//base/test:test_support", | 54 "//base/test:test_support", |
| 55 "//services/ui/common:task_runner_test_base", |
| 55 "//testing/gmock", | 56 "//testing/gmock", |
| 56 "//testing/gtest", | 57 "//testing/gtest", |
| 58 "//ui/base", |
| 57 "//ui/display", | 59 "//ui/display", |
| 60 "//ui/events/devices", |
| 58 "//ui/gfx", | 61 "//ui/gfx", |
| 59 "//ui/gfx:test_support", | 62 "//ui/gfx:test_support", |
| 60 "//ui/ozone", | 63 "//ui/ozone", |
| 61 ] | 64 ] |
| 65 |
| 66 data_deps = [ |
| 67 "//ui/resources:ui_test_pak_data", |
| 68 ] |
| 62 } | 69 } |
| 63 } | 70 } |
| OLD | NEW |