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