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

Unified Diff: device/serial/serial.gyp

Issue 158063002: Use udev for serial device enumeration on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: -___- Created 6 years, 10 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 | « chrome/common/extensions/api/serial.idl ('k') | device/serial/serial_device_enumerator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/serial.gyp
diff --git a/device/serial/serial.gyp b/device/serial/serial.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..1f200b905b4b8dfd8343963dc9b00c9c70517d53
--- /dev/null
+++ b/device/serial/serial.gyp
@@ -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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'device_serial',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../../build/linux/system.gyp:udev',
+ ],
+ }],
+ ],
+ 'sources': [
+ 'serial_device_enumerator.cc',
+ 'serial_device_enumerator.h',
+ 'serial_device_enumerator_linux.cc',
+ 'serial_device_enumerator_linux.h',
+ 'serial_device_enumerator_mac.cc',
+ 'serial_device_enumerator_mac.h',
+ 'serial_device_enumerator_win.cc',
+ 'serial_device_enumerator_win.h',
+ 'serial_device_info.cc',
+ 'serial_device_info.h',
+ ],
+ },
+ ],
+}
« no previous file with comments | « chrome/common/extensions/api/serial.idl ('k') | device/serial/serial_device_enumerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698