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

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: modified WebUsbBrowserClient::Set function again 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..ea420a7c22b426aeaec3232279b2ba4e1165c2de
--- /dev/null
+++ b/components/webusb.gypi
@@ -0,0 +1,31 @@
+# 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',
+ '../url/url.gyp:url_lib',
+ '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