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

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

Issue 980023002: Move device/usb classes from the FILE thread to UI thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 assert(!is_android && !is_ios) 5 assert(!is_android && !is_ios)
6 6
7 source_ids = "//third_party/usb_ids/usb.ids" 7 source_ids = "//third_party/usb_ids/usb.ids"
8 generated_ids = "$target_gen_dir/usb_ids_gen.cc" 8 generated_ids = "$target_gen_dir/usb_ids_gen.cc"
9 9
10 source_set("usb") { 10 source_set("usb") {
11 sources = [ 11 sources = [
12 "usb_context.cc", 12 "usb_context.cc",
13 "usb_context.h", 13 "usb_context.h",
14 "usb_descriptors.cc", 14 "usb_descriptors.cc",
15 "usb_descriptors.h", 15 "usb_descriptors.h",
16 "usb_device.cc",
16 "usb_device.h", 17 "usb_device.h",
17 "usb_device_filter.cc", 18 "usb_device_filter.cc",
18 "usb_device_filter.h", 19 "usb_device_filter.h",
19 "usb_device_handle.h", 20 "usb_device_handle.h",
20 "usb_device_handle_impl.cc", 21 "usb_device_handle_impl.cc",
21 "usb_device_handle_impl.h", 22 "usb_device_handle_impl.h",
22 "usb_device_impl.cc", 23 "usb_device_impl.cc",
23 "usb_device_impl.h", 24 "usb_device_impl.h",
24 "usb_error.cc", 25 "usb_error.cc",
25 "usb_error.h", 26 "usb_error.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 args = [ 62 args = [
62 "-i", 63 "-i",
63 rebase_path(source_ids, root_build_dir), 64 rebase_path(source_ids, root_build_dir),
64 "-o", 65 "-o",
65 rebase_path(generated_ids, root_build_dir), 66 rebase_path(generated_ids, root_build_dir),
66 ] 67 ]
67 68
68 # Only the device_usb target can depend on us. 69 # Only the device_usb target can depend on us.
69 visibility = [ ":usb" ] 70 visibility = [ ":usb" ]
70 } 71 }
OLDNEW
« no previous file with comments | « device/test/usb_test_gadget_impl.cc ('k') | device/usb/usb.gyp » ('j') | device/usb/usb_device.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698