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

Side by Side Diff: device/BUILD.gn

Issue 2763413008: Add U2F device enumeration class (Closed)
Patch Set: Fix issues causing crash Created 3 years, 8 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 | « no previous file | device/u2f/BUILD.gn » ('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 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 # Linux, requires udev. 125 # Linux, requires udev.
126 if (!is_linux_without_udev && !is_android) { 126 if (!is_linux_without_udev && !is_android) {
127 sources += [ 127 sources += [
128 "hid/hid_connection_unittest.cc", 128 "hid/hid_connection_unittest.cc",
129 "hid/hid_device_filter_unittest.cc", 129 "hid/hid_device_filter_unittest.cc",
130 "hid/hid_report_descriptor_unittest.cc", 130 "hid/hid_report_descriptor_unittest.cc",
131 "hid/input_service_linux_unittest.cc", 131 "hid/input_service_linux_unittest.cc",
132 "hid/test_report_descriptors.cc", 132 "hid/test_report_descriptors.cc",
133 "hid/test_report_descriptors.h", 133 "hid/test_report_descriptors.h",
134 "serial/serial_io_handler_posix_unittest.cc", 134 "serial/serial_io_handler_posix_unittest.cc",
135 "u2f/u2f_enumerate_unittest.cc",
135 "u2f/u2f_hid_device_unittest.cc", 136 "u2f/u2f_hid_device_unittest.cc",
136 ] 137 ]
137 deps += [ 138 deps += [
138 "//device/hid", 139 "//device/hid",
139 "//device/hid:mocks", 140 "//device/hid:mocks",
140 "//device/serial", 141 "//device/serial",
141 "//device/serial:test_support", 142 "//device/serial:test_support",
142 ] 143 ]
143 } 144 }
144 145
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 ] 308 ]
308 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 309 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
309 } 310 }
310 311
311 java_cpp_enum("bluetooth_test_javagen") { 312 java_cpp_enum("bluetooth_test_javagen") {
312 sources = [ 313 sources = [
313 "bluetooth/test/bluetooth_test.h", 314 "bluetooth/test/bluetooth_test.h",
314 ] 315 ]
315 } 316 }
316 } 317 }
OLDNEW
« no previous file with comments | « no previous file | device/u2f/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698