| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 source_set("tests") { | 57 source_set("tests") { |
| 58 testonly = true | 58 testonly = true |
| 59 | 59 |
| 60 sources = [ | 60 sources = [ |
| 61 "battery/battery_status_manager_win_unittest.cc", | 61 "battery/battery_status_manager_win_unittest.cc", |
| 62 "battery/battery_status_service_unittest.cc", | 62 "battery/battery_status_service_unittest.cc", |
| 63 "power_monitor/power_monitor_message_broadcaster_unittest.cc", | 63 "power_monitor/power_monitor_message_broadcaster_unittest.cc", |
| 64 "public/cpp/power_monitor/power_monitor_broadcast_source_unittest.cc", | 64 "public/cpp/power_monitor/power_monitor_broadcast_source_unittest.cc", |
| 65 "vibration/vibration_manager_impl_unittest.cc", | 65 "vibration/vibration_manager_impl_unittest.cc", |
| 66 "wake_lock/wake_lock_service_impl_unittest.cc", |
| 66 ] | 67 ] |
| 67 | 68 |
| 68 deps = [ | 69 deps = [ |
| 69 ":test_support", | 70 ":test_support", |
| 70 "//base", | 71 "//base", |
| 71 "//base/test:test_support", | 72 "//base/test:test_support", |
| 73 "//device/wake_lock", |
| 72 "//mojo/public/cpp/bindings", | 74 "//mojo/public/cpp/bindings", |
| 73 "//services/device/power_monitor", | 75 "//services/device/power_monitor", |
| 74 "//services/device/public/cpp/power_monitor", | 76 "//services/device/public/cpp/power_monitor", |
| 75 "//testing/gmock", | 77 "//testing/gmock", |
| 76 "//testing/gtest", | 78 "//testing/gtest", |
| 77 ] | 79 ] |
| 78 | 80 |
| 79 if (is_linux && !is_chromeos && use_dbus) { | 81 if (is_linux && !is_chromeos && use_dbus) { |
| 80 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 82 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
| 81 deps += [ "//dbus:test_support" ] | 83 deps += [ "//dbus:test_support" ] |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "//services/device/battery/android:battery_monitor_java", | 175 "//services/device/battery/android:battery_monitor_java", |
| 174 "//services/device/public/interfaces:interfaces_java", | 176 "//services/device/public/interfaces:interfaces_java", |
| 175 "//services/device/screen_orientation:java", | 177 "//services/device/screen_orientation:java", |
| 176 "//services/device/time_zone_monitor:java", | 178 "//services/device/time_zone_monitor:java", |
| 177 "//services/device/vibration/android:vibration_manager_java", | 179 "//services/device/vibration/android:vibration_manager_java", |
| 178 "//services/service_manager/public/interfaces:interfaces_java", | 180 "//services/service_manager/public/interfaces:interfaces_java", |
| 179 "//services/service_manager/public/java:service_manager_java", | 181 "//services/service_manager/public/java:service_manager_java", |
| 180 ] | 182 ] |
| 181 } | 183 } |
| 182 } | 184 } |
| OLD | NEW |