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

Side by Side Diff: device/BUILD.gn

Issue 1682363002: Remove //device/devices_app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove two files that somehow survived in //device/devices_app. Created 4 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
« no previous file with comments | « content/renderer/usb/web_usb_device_impl.cc ('k') | device/device_tests.gyp » ('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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 96 }
97 97
98 if (use_udev) { 98 if (use_udev) {
99 sources += [ "udev_linux/udev_unittest.cc" ] 99 sources += [ "udev_linux/udev_unittest.cc" ]
100 deps += [ "//device/udev_linux" ] 100 deps += [ "//device/udev_linux" ]
101 } 101 }
102 102
103 # USB does not compile on iOS. 103 # USB does not compile on iOS.
104 if (!is_ios) { 104 if (!is_ios) {
105 sources += [ 105 sources += [
106 "devices_app/usb/device_impl_unittest.cc",
107 "devices_app/usb/device_manager_impl_unittest.cc",
108 "devices_app/usb/fake_permission_provider.cc",
109 "devices_app/usb/fake_permission_provider.h",
110 "test/test_device_client.cc", 106 "test/test_device_client.cc",
111 "test/test_device_client.h", 107 "test/test_device_client.h",
112 "test/usb_test_gadget_impl.cc", 108 "test/usb_test_gadget_impl.cc",
109 "usb/mojo/device_impl_unittest.cc",
110 "usb/mojo/device_manager_impl_unittest.cc",
111 "usb/mojo/fake_permission_provider.cc",
112 "usb/mojo/fake_permission_provider.h",
113 "usb/usb_descriptors_unittest.cc", 113 "usb/usb_descriptors_unittest.cc",
114 "usb/usb_device_filter_unittest.cc", 114 "usb/usb_device_filter_unittest.cc",
115 "usb/usb_device_handle_unittest.cc", 115 "usb/usb_device_handle_unittest.cc",
116 "usb/usb_ids_unittest.cc", 116 "usb/usb_ids_unittest.cc",
117 "usb/usb_service_unittest.cc", 117 "usb/usb_service_unittest.cc",
118 "usb/webusb_descriptors_unittest.cc", 118 "usb/webusb_descriptors_unittest.cc",
119 ] 119 ]
120 deps += [ 120 deps += [
121 "//device/core", 121 "//device/core",
122 "//device/core:mocks", 122 "//device/core:mocks",
123 "//device/devices_app:lib",
124 "//device/devices_app/usb/public/interfaces",
125 "//device/usb", 123 "//device/usb",
126 "//device/usb:mocks", 124 "//device/usb:mocks",
125 "//device/usb/mojo",
126 "//device/usb/public/interfaces",
127 ] 127 ]
128 } 128 }
129 129
130 # UsbContext is a libusb-specific object. 130 # UsbContext is a libusb-specific object.
131 if (!is_android && !is_ios) { 131 if (!is_android && !is_ios) {
132 sources += [ "usb/usb_context_unittest.cc" ] 132 sources += [ "usb/usb_context_unittest.cc" ]
133 deps += [ "//third_party/libusb" ] 133 deps += [ "//third_party/libusb" ]
134 } 134 }
135 135
136 if (is_android) { 136 if (is_android) {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 } 201 }
202 202
203 android_library("bluetooth_test_java") { 203 android_library("bluetooth_test_java") {
204 java_files = bluetooth_java_sources_needing_jni 204 java_files = bluetooth_java_sources_needing_jni
205 deps = [ 205 deps = [
206 "//base:base_java", 206 "//base:base_java",
207 "//device/bluetooth:java", 207 "//device/bluetooth:java",
208 ] 208 ]
209 } 209 }
210 } 210 }
OLDNEW
« no previous file with comments | « content/renderer/usb/web_usb_device_impl.cc ('k') | device/device_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698