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

Unified Diff: components/usb_service.gypi

Issue 236203019: Move UsbService to its own component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move usb_service component symbols into usb_service namespace Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/usb_service/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/usb_service.gypi
diff --git a/components/usb_service.gypi b/components/usb_service.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..97f4a618e972daf8429bf79bed10abd2c2be5641
--- /dev/null
+++ b/components/usb_service.gypi
@@ -0,0 +1,35 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [{
+ 'target_name': 'usb_service',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '../content/content.gyp:content_browser',
+ '../net/net.gyp:net',
+ '../third_party/libusb/libusb.gyp:libusb',
+ ],
+ 'defines': [
+ 'USB_SERVICE_IMPLEMENTATION',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'usb_service/usb_context.cc',
+ 'usb_service/usb_context.h',
+ 'usb_service/usb_device.cc',
+ 'usb_service/usb_device.h',
+ 'usb_service/usb_device_handle.cc',
+ 'usb_service/usb_device_handle.h',
+ 'usb_service/usb_interface.cc',
+ 'usb_service/usb_interface.h',
+ 'usb_service/usb_service.cc',
+ 'usb_service/usb_service.h',
+ ]
+ }],
+}
« no previous file with comments | « components/components_tests.gyp ('k') | components/usb_service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698