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

Side by Side Diff: components/usb_service.gypi

Issue 497363004: Merge components/usb_service into device/usb. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide //device/usb on mobile platforms. Created 6 years, 3 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
(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 {
6 'targets': [{
7 # GN version: //components/usb_service
8 'target_name': 'usb_service',
9 'type': '<(component)',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_a nnotations',
13 '../content/content.gyp:content_browser',
14 '../net/net.gyp:net',
15 '../third_party/libusb/libusb.gyp:libusb',
16 ],
17 'defines': [
18 'USB_SERVICE_IMPLEMENTATION',
19 ],
20 'include_dirs': [
21 '..',
22 ],
23 'sources': [
24 # Note: sources list duplicated in GN build.
25 'usb_service/usb_context.cc',
26 'usb_service/usb_context.h',
27 'usb_service/usb_device_impl.cc',
28 'usb_service/usb_device_impl.h',
29 'usb_service/usb_device.h',
30 'usb_service/usb_device_filter.cc',
31 'usb_service/usb_device_filter.h',
32 'usb_service/usb_device_handle_impl.cc',
33 'usb_service/usb_device_handle_impl.h',
34 'usb_service/usb_device_handle.h',
35 'usb_service/usb_error.cc',
36 'usb_service/usb_error.h',
37 'usb_service/usb_interface.h',
38 'usb_service/usb_interface_impl.cc',
39 'usb_service/usb_interface_impl.h',
40 'usb_service/usb_service.h',
41 'usb_service/usb_service_impl.cc',
42 ],
43 'conditions': [
44 ['use_udev == 1', {
45 'dependencies': [
46 '../build/linux/system.gyp:udev',
47 ],
48 }],
49 ['chromeos==1', {
50 'dependencies': [
51 '../chromeos/chromeos.gyp:chromeos',
52 ],
53 }],
54 ]
55 }],
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698