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

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

Issue 2417043002: Move device/core files to device/base directory. (Closed)
Patch Set: Fix ChromeOS build Created 4 years, 2 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 | « device/test/usb_test_gadget_impl.cc ('k') | device/usb/mojo/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/libfuzzer/fuzzer_test.gni") 6 import("//testing/libfuzzer/fuzzer_test.gni")
7 7
8 assert(!is_ios) 8 assert(!is_ios)
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "webusb_descriptors.cc", 47 "webusb_descriptors.cc",
48 "webusb_descriptors.h", 48 "webusb_descriptors.h",
49 generated_ids, 49 generated_ids,
50 ] 50 ]
51 51
52 deps = [ 52 deps = [
53 ":usb_device_ids", 53 ":usb_device_ids",
54 "//base", 54 "//base",
55 "//base/third_party/dynamic_annotations", 55 "//base/third_party/dynamic_annotations",
56 "//components/device_event_log", 56 "//components/device_event_log",
57 "//device/core", 57 "//device/base",
58 "//net", 58 "//net",
59 ] 59 ]
60 60
61 if (use_udev) { 61 if (use_udev) {
62 sources += [ 62 sources += [
63 "usb_service_linux.cc", 63 "usb_service_linux.cc",
64 "usb_service_linux.h", 64 "usb_service_linux.h",
65 ] 65 ]
66 deps += [ "//device/udev_linux" ] 66 deps += [ "//device/udev_linux" ]
67 } 67 }
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 jni_package = "device" 203 jni_package = "device"
204 } 204 }
205 205
206 android_library("java") { 206 android_library("java") {
207 java_files = java_sources_needing_jni 207 java_files = java_sources_needing_jni
208 deps = [ 208 deps = [
209 "//base:base_java", 209 "//base:base_java",
210 ] 210 ]
211 } 211 }
212 } 212 }
OLDNEW
« no previous file with comments | « device/test/usb_test_gadget_impl.cc ('k') | device/usb/mojo/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698