| 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("//device/vr/features.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 10 |
| 10 if (is_android) { | 11 if (is_android) { |
| 11 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
| 12 } | 13 } |
| 13 | 14 |
| 14 source_set("lib") { | 15 source_set("lib") { |
| 15 # This should be visible only to embedders of the Device Service, and the | 16 # This should be visible only to embedders of the Device Service, and the |
| 16 # dependence should only be for the purpose of embedding the Device Service. | 17 # dependence should only be for the purpose of embedding the Device Service. |
| 17 visibility = [ | 18 visibility = [ |
| 18 ":test_support", | 19 ":test_support", |
| 19 "//content/browser", | 20 "//content/browser", |
| 20 ] | 21 ] |
| 21 sources = [ | 22 sources = [ |
| 22 "device_service.cc", | 23 "device_service.cc", |
| 23 "device_service.h", | 24 "device_service.h", |
| 24 ] | 25 ] |
| 25 | 26 |
| 26 deps = [ | 27 deps = [ |
| 27 "//base", | 28 "//base", |
| 28 "//device/battery:mojo_bindings", | 29 "//device/battery:mojo_bindings", |
| 29 "//device/generic_sensor", | 30 "//device/generic_sensor", |
| 30 "//device/sensors", | 31 "//device/sensors", |
| 31 "//device/sensors/public/interfaces", | 32 "//device/sensors/public/interfaces", |
| 32 "//device/vibration:mojo_bindings", | 33 "//device/vibration:mojo_bindings", |
| 34 "//device/vr", |
| 35 "//device/vr:features", |
| 33 "//device/wake_lock", | 36 "//device/wake_lock", |
| 34 "//services/device/fingerprint", | 37 "//services/device/fingerprint", |
| 35 "//services/device/power_monitor", | 38 "//services/device/power_monitor", |
| 36 "//services/device/public/cpp:device_features", | 39 "//services/device/public/cpp:device_features", |
| 37 "//services/device/screen_orientation", | 40 "//services/device/screen_orientation", |
| 38 "//services/device/time_zone_monitor", | 41 "//services/device/time_zone_monitor", |
| 39 "//services/service_manager/public/cpp", | 42 "//services/service_manager/public/cpp", |
| 40 "//ui/gfx", | 43 "//ui/gfx", |
| 41 ] | 44 ] |
| 42 | 45 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//mojo/android:system_java", | 160 "//mojo/android:system_java", |
| 158 "//mojo/public/java:bindings_java", | 161 "//mojo/public/java:bindings_java", |
| 159 "//mojo/public/java:system_java", | 162 "//mojo/public/java:system_java", |
| 160 "//services/device/screen_orientation:java", | 163 "//services/device/screen_orientation:java", |
| 161 "//services/device/time_zone_monitor:java", | 164 "//services/device/time_zone_monitor:java", |
| 162 "//services/service_manager/public/interfaces:interfaces_java", | 165 "//services/service_manager/public/interfaces:interfaces_java", |
| 163 "//services/service_manager/public/java:service_manager_java", | 166 "//services/service_manager/public/java:service_manager_java", |
| 164 ] | 167 ] |
| 165 } | 168 } |
| 166 } | 169 } |
| OLD | NEW |