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

Unified Diff: components/webusb.gypi

Issue 1289423002: Add webusb notification UI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved webusb::WebUsbDetector::GetInstance() call to chrome_browser_main.cc Created 5 years, 4 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
Index: components/webusb.gypi
diff --git a/components/webusb.gypi b/components/webusb.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..92d699231cb2f08ebbf5ed0cddf7fd4ceb5494f3
--- /dev/null
+++ b/components/webusb.gypi
@@ -0,0 +1,30 @@
+# Copyright 2015 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': 'webusb',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../device/core/core.gyp:device_core',
+ '../device/usb/usb.gyp:device_usb',
+ '../ui/base/ui_base.gyp:ui_base',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../ui/message_center/message_center.gyp:message_center',
+ 'components_strings.gyp:components_strings',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'webusb/webusb_browser_client.cc',
+ 'webusb/webusb_browser_client.h',
+ 'webusb/webusb_detector.cc',
+ 'webusb/webusb_detector.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698