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

Side by Side Diff: components/usb_service/BUILD.gn

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/usb_service.gypi ('k') | components/web_modal.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 component("usb_service") {
6 sources = [
7 "usb_context.cc",
8 "usb_context.h",
9 "usb_device_impl.cc",
10 "usb_device_impl.h",
11 "usb_device.h",
12 "usb_device_handle_impl.cc",
13 "usb_device_handle_impl.h",
14 "usb_device_handle.h",
15 "usb_error.cc",
16 "usb_error.h",
17 "usb_interface.h",
18 "usb_interface_impl.cc",
19 "usb_interface_impl.h",
20 "usb_service.h",
21 "usb_service_impl.cc",
22 ]
23
24 defines = [ "USB_SERVICE_IMPLEMENTATION" ]
25
26 deps = [
27 "//base",
28 "//base/third_party/dynamic_annotations",
29 "//content/public/browser",
30 "//net",
31 "//third_party/libusb",
32 ]
33
34 if (is_linux) {
35 configs += [ "//build/config/linux:udev" ]
36 }
37 }
OLDNEW
« no previous file with comments | « components/usb_service.gypi ('k') | components/web_modal.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698