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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/usb_service.gypi ('k') | components/web_modal.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/usb_service/BUILD.gn
diff --git a/components/usb_service/BUILD.gn b/components/usb_service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..6439d0572e5cbc159b5c05a7ce0232656322fd37
--- /dev/null
+++ b/components/usb_service/BUILD.gn
@@ -0,0 +1,37 @@
+# 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.
+
+component("usb_service") {
+ sources = [
+ "usb_context.cc",
+ "usb_context.h",
+ "usb_device_impl.cc",
+ "usb_device_impl.h",
+ "usb_device.h",
+ "usb_device_handle_impl.cc",
+ "usb_device_handle_impl.h",
+ "usb_device_handle.h",
+ "usb_error.cc",
+ "usb_error.h",
+ "usb_interface.h",
+ "usb_interface_impl.cc",
+ "usb_interface_impl.h",
+ "usb_service.h",
+ "usb_service_impl.cc",
+ ]
+
+ defines = [ "USB_SERVICE_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//content/public/browser",
+ "//net",
+ "//third_party/libusb",
+ ]
+
+ if (is_linux) {
+ configs += [ "//build/config/linux:udev" ]
+ }
+}
« 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