Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Side by Side Diff: services/device/BUILD.gn

Issue 2885203004: Refactor content/renderer/device_sensors to use device/generic_sensor instead of device/sensors (Closed)
Patch Set: updated content/renderer/BUILD.gn Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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) {
11 import("//build/config/android/rules.gni") 11 import("//build/config/android/rules.gni")
12 } 12 }
13 13
14 source_set("lib") { 14 source_set("lib") {
15 # This should be visible only to embedders of the Device Service, and the 15 # 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. 16 # dependence should only be for the purpose of embedding the Device Service.
17 visibility = [ 17 visibility = [
18 ":test_support", 18 ":test_support",
19 "//content/browser", 19 "//content/browser",
20 ] 20 ]
21 sources = [ 21 sources = [
22 "device_service.cc", 22 "device_service.cc",
23 "device_service.h", 23 "device_service.h",
24 ] 24 ]
25 25
26 deps = [ 26 deps = [
27 "//base", 27 "//base",
28 "//device/generic_sensor", 28 "//device/generic_sensor",
29 "//device/nfc:mojo_bindings", 29 "//device/nfc:mojo_bindings",
30 "//device/sensors",
31 "//device/sensors/public/interfaces",
32 "//device/wake_lock", 30 "//device/wake_lock",
33 "//services/device/fingerprint", 31 "//services/device/fingerprint",
34 "//services/device/power_monitor", 32 "//services/device/power_monitor",
35 "//services/device/public/cpp:device_features", 33 "//services/device/public/cpp:device_features",
36 "//services/device/public/interfaces", 34 "//services/device/public/interfaces",
37 "//services/device/screen_orientation", 35 "//services/device/screen_orientation",
38 "//services/device/time_zone_monitor", 36 "//services/device/time_zone_monitor",
39 "//services/service_manager/public/cpp", 37 "//services/service_manager/public/cpp",
40 "//ui/gfx", 38 "//ui/gfx",
41 ] 39 ]
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 "//services/device/battery/android:battery_monitor_java", 171 "//services/device/battery/android:battery_monitor_java",
174 "//services/device/public/interfaces:interfaces_java", 172 "//services/device/public/interfaces:interfaces_java",
175 "//services/device/screen_orientation:java", 173 "//services/device/screen_orientation:java",
176 "//services/device/time_zone_monitor:java", 174 "//services/device/time_zone_monitor:java",
177 "//services/device/vibration/android:vibration_manager_java", 175 "//services/device/vibration/android:vibration_manager_java",
178 "//services/service_manager/public/interfaces:interfaces_java", 176 "//services/service_manager/public/interfaces:interfaces_java",
179 "//services/service_manager/public/java:service_manager_java", 177 "//services/service_manager/public/java:service_manager_java",
180 ] 178 ]
181 } 179 }
182 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698