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

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

Issue 2894373002: [DeviceService] Move //device/nfc to be part of the internal impl of Device Service (Closed)
Patch Set: Modify code comment 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
« no previous file with comments | « services/BUILD.gn ('k') | services/device/device_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
30 "//device/sensors", 29 "//device/sensors",
31 "//device/sensors/public/interfaces", 30 "//device/sensors/public/interfaces",
32 "//device/wake_lock", 31 "//device/wake_lock",
33 "//services/device/fingerprint", 32 "//services/device/fingerprint",
34 "//services/device/power_monitor", 33 "//services/device/power_monitor",
35 "//services/device/public/cpp:device_features", 34 "//services/device/public/cpp:device_features",
36 "//services/device/public/interfaces", 35 "//services/device/public/interfaces",
37 "//services/device/screen_orientation", 36 "//services/device/screen_orientation",
38 "//services/device/time_zone_monitor", 37 "//services/device/time_zone_monitor",
39 "//services/service_manager/public/cpp", 38 "//services/service_manager/public/cpp",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 # targets which also need to see this target as well. 156 # targets which also need to see this target as well.
158 # //services:* identifies //services:service_unittests and all of its 157 # //services:* identifies //services:service_unittests and all of its
159 # generated targets. 158 # generated targets.
160 visibility = [ 159 visibility = [
161 "//content/public/android:*", 160 "//content/public/android:*",
162 "//services:*", 161 "//services:*",
163 ] 162 ]
164 java_files = [ "android/java/src/org/chromium/services/device/InterfaceRegis trar.java" ] 163 java_files = [ "android/java/src/org/chromium/services/device/InterfaceRegis trar.java" ]
165 deps = [ 164 deps = [
166 "//base:base_java", 165 "//base:base_java",
167 "//device/nfc:mojo_bindings_java",
168 "//device/nfc/android:java",
169 "//device/nfc/public/java:nfc_java",
170 "//mojo/android:system_java", 166 "//mojo/android:system_java",
171 "//mojo/public/java:bindings_java", 167 "//mojo/public/java:bindings_java",
172 "//mojo/public/java:system_java", 168 "//mojo/public/java:system_java",
173 "//services/device/battery/android:battery_monitor_java", 169 "//services/device/battery/android:battery_monitor_java",
170 "//services/device/nfc/android:java",
174 "//services/device/public/interfaces:interfaces_java", 171 "//services/device/public/interfaces:interfaces_java",
172 "//services/device/public/java:nfc_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
« no previous file with comments | « services/BUILD.gn ('k') | services/device/device_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698