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

Side by Side Diff: device/BUILD.gn

Issue 2502103002: Add FIDO U2F message and packet classes (Closed)
Patch Set: Add //net dependency to fuzzer in BUILD.gn Created 4 years 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 sources += [ "udev_linux/udev_unittest.cc" ] 130 sources += [ "udev_linux/udev_unittest.cc" ]
131 deps += [ "//device/udev_linux" ] 131 deps += [ "//device/udev_linux" ]
132 } 132 }
133 133
134 # USB does not compile on iOS. 134 # USB does not compile on iOS.
135 if (!is_ios) { 135 if (!is_ios) {
136 sources += [ 136 sources += [
137 "test/test_device_client.cc", 137 "test/test_device_client.cc",
138 "test/test_device_client.h", 138 "test/test_device_client.h",
139 "test/usb_test_gadget_impl.cc", 139 "test/usb_test_gadget_impl.cc",
140 "u2f/u2f_message_unittest.cc",
140 "usb/mojo/device_impl_unittest.cc", 141 "usb/mojo/device_impl_unittest.cc",
141 "usb/mojo/device_manager_impl_unittest.cc", 142 "usb/mojo/device_manager_impl_unittest.cc",
142 "usb/mojo/mock_permission_provider.cc", 143 "usb/mojo/mock_permission_provider.cc",
143 "usb/mojo/mock_permission_provider.h", 144 "usb/mojo/mock_permission_provider.h",
144 "usb/usb_descriptors_unittest.cc", 145 "usb/usb_descriptors_unittest.cc",
145 "usb/usb_device_filter_unittest.cc", 146 "usb/usb_device_filter_unittest.cc",
146 "usb/usb_device_handle_unittest.cc", 147 "usb/usb_device_handle_unittest.cc",
147 "usb/usb_ids_unittest.cc", 148 "usb/usb_ids_unittest.cc",
148 "usb/usb_service_unittest.cc", 149 "usb/usb_service_unittest.cc",
149 "usb/webusb_descriptors_unittest.cc", 150 "usb/webusb_descriptors_unittest.cc",
150 ] 151 ]
151 deps += [ 152 deps += [
152 "//device/base", 153 "//device/base",
153 "//device/base:mocks", 154 "//device/base:mocks",
155 "//device/u2f",
154 "//device/usb", 156 "//device/usb",
155 "//device/usb:test_support", 157 "//device/usb:test_support",
156 "//device/usb/mojo", 158 "//device/usb/mojo",
157 "//device/usb/public/interfaces", 159 "//device/usb/public/interfaces",
158 ] 160 ]
159 } 161 }
160 162
161 # UsbContext is a libusb-specific object. 163 # UsbContext is a libusb-specific object.
162 if (is_mac || is_win) { 164 if (is_mac || is_win) {
163 sources += [ "usb/usb_context_unittest.cc" ] 165 sources += [ "usb/usb_context_unittest.cc" ]
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 ] 286 ]
285 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 287 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
286 } 288 }
287 289
288 java_cpp_enum("bluetooth_test_javagen") { 290 java_cpp_enum("bluetooth_test_javagen") {
289 sources = [ 291 sources = [
290 "bluetooth/test/bluetooth_test.h", 292 "bluetooth/test/bluetooth_test.h",
291 ] 293 ]
292 } 294 }
293 } 295 }
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