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

Side by Side Diff: device/BUILD.gn

Issue 2664353002: Host fingerprint mojo service within the device service. (Closed)
Patch Set: try to fix BUILD.gn Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") # For generate_jni(). 9 import("//build/config/android/rules.gni") # For generate_jni().
10 } 10 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 deps = [ 77 deps = [
78 "//base/test:test_support", 78 "//base/test:test_support",
79 "//base/third_party/dynamic_annotations:dynamic_annotations", 79 "//base/third_party/dynamic_annotations:dynamic_annotations",
80 "//device/base/synchronization", 80 "//device/base/synchronization",
81 "//device/battery", 81 "//device/battery",
82 "//device/battery:mojo_bindings", 82 "//device/battery:mojo_bindings",
83 "//device/bluetooth", 83 "//device/bluetooth",
84 "//device/bluetooth:mocks", 84 "//device/bluetooth:mocks",
85 "//device/bluetooth:mojo", 85 "//device/bluetooth:mojo",
86 "//device/fingerprint",
87 "//device/fingerprint/public/interfaces",
86 "//device/gamepad", 88 "//device/gamepad",
87 "//device/gamepad:test_helpers", 89 "//device/gamepad:test_helpers",
88 "//device/gamepad/public/interfaces", 90 "//device/gamepad/public/interfaces",
89 "//device/gamepad/public/interfaces:gamepad_struct_traits_test", 91 "//device/gamepad/public/interfaces:gamepad_struct_traits_test",
90 "//device/generic_sensor", 92 "//device/generic_sensor",
91 "//device/generic_sensor:testing", 93 "//device/generic_sensor:testing",
92 "//device/geolocation:unittests", 94 "//device/geolocation:unittests",
93 "//device/power_monitor", 95 "//device/power_monitor",
94 "//device/power_monitor/public/cpp", 96 "//device/power_monitor/public/cpp",
95 "//device/power_monitor/public/interfaces", 97 "//device/power_monitor/public/interfaces",
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 ] 304 ]
303 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 305 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
304 } 306 }
305 307
306 java_cpp_enum("bluetooth_test_javagen") { 308 java_cpp_enum("bluetooth_test_javagen") {
307 sources = [ 309 sources = [
308 "bluetooth/test/bluetooth_test.h", 310 "bluetooth/test/bluetooth_test.h",
309 ] 311 ]
310 } 312 }
311 } 313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698