| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("tests") { | 57 source_set("tests") { |
| 58 testonly = true | 58 testonly = true |
| 59 | 59 |
| 60 sources = [ | 60 sources = [ |
| 61 "power_monitor/power_monitor_message_broadcaster_unittest.cc", | 61 "power_monitor/power_monitor_message_broadcaster_unittest.cc", |
| 62 "public/cpp/power_monitor/power_monitor_broadcast_source_unittest.cc", | 62 "public/cpp/power_monitor/power_monitor_broadcast_source_unittest.cc", |
| 63 "sensors/device_sensor_service_unittest.cc", |
| 63 "vibration/vibration_manager_impl_unittest.cc", | 64 "vibration/vibration_manager_impl_unittest.cc", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 ":test_support", | 68 ":test_support", |
| 68 "//base", | 69 "//base", |
| 69 "//base/test:test_support", | 70 "//base/test:test_support", |
| 71 "//device/sensors", |
| 72 "//device/sensors/public/cpp:full", |
| 70 "//mojo/public/cpp/bindings", | 73 "//mojo/public/cpp/bindings", |
| 71 "//services/device/power_monitor", | 74 "//services/device/power_monitor", |
| 72 "//services/device/public/cpp/power_monitor", | 75 "//services/device/public/cpp/power_monitor", |
| 73 "//testing/gtest", | 76 "//testing/gtest", |
| 74 ] | 77 ] |
| 75 | 78 |
| 76 if (is_chromeos) { | 79 if (is_chromeos) { |
| 77 sources += [ "fingerprint/fingerprint_chromeos_unittest.cc" ] | 80 sources += [ "fingerprint/fingerprint_chromeos_unittest.cc" ] |
| 78 deps += [ "//services/device/fingerprint" ] | 81 deps += [ "//services/device/fingerprint" ] |
| 79 } | 82 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "//mojo/public/java:system_java", | 156 "//mojo/public/java:system_java", |
| 154 "//services/device/public/interfaces:interfaces_java", | 157 "//services/device/public/interfaces:interfaces_java", |
| 155 "//services/device/screen_orientation:java", | 158 "//services/device/screen_orientation:java", |
| 156 "//services/device/time_zone_monitor:java", | 159 "//services/device/time_zone_monitor:java", |
| 157 "//services/device/vibration/android:vibration_manager_java", | 160 "//services/device/vibration/android:vibration_manager_java", |
| 158 "//services/service_manager/public/interfaces:interfaces_java", | 161 "//services/service_manager/public/interfaces:interfaces_java", |
| 159 "//services/service_manager/public/java:service_manager_java", | 162 "//services/service_manager/public/java:service_manager_java", |
| 160 ] | 163 ] |
| 161 } | 164 } |
| 162 } | 165 } |
| OLD | NEW |