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

Side by Side Diff: device/serial/serial.gyp

Issue 423373002: Convert SerialIoHandler to use buffer interfaces for I/O API methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@js-serial
Patch Set: rebase Created 6 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 26 matching lines...) Expand all
37 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', 37 '../../mojo/mojo_base.gyp:mojo_cpp_bindings',
38 '../../net/net.gyp:net', 38 '../../net/net.gyp:net',
39 ], 39 ],
40 'export_dependent_settings': [ 40 'export_dependent_settings': [
41 'device_serial_mojo', 41 'device_serial_mojo',
42 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', 42 '../../mojo/mojo_base.gyp:mojo_cpp_bindings',
43 ], 43 ],
44 'sources': [ 44 'sources': [
45 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.cc', 45 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.cc',
46 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.h', 46 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.h',
47 'buffer.cc',
48 'buffer.h',
47 'serial_connection.cc', 49 'serial_connection.cc',
48 'serial_connection.h', 50 'serial_connection.h',
49 'serial_connection_factory.cc', 51 'serial_connection_factory.cc',
50 'serial_connection_factory.h', 52 'serial_connection_factory.h',
51 'serial_device_enumerator.cc', 53 'serial_device_enumerator.cc',
52 'serial_device_enumerator.h', 54 'serial_device_enumerator.h',
53 'serial_device_enumerator_linux.cc', 55 'serial_device_enumerator_linux.cc',
54 'serial_device_enumerator_linux.h', 56 'serial_device_enumerator_linux.h',
55 'serial_device_enumerator_mac.cc', 57 'serial_device_enumerator_mac.cc',
56 'serial_device_enumerator_mac.h', 58 'serial_device_enumerator_mac.h',
(...skipping 17 matching lines...) Expand all
74 'device_serial', 76 'device_serial',
75 'device_serial_mojo', 77 'device_serial_mojo',
76 ], 78 ],
77 'sources': [ 79 'sources': [
78 'test_serial_io_handler.cc', 80 'test_serial_io_handler.cc',
79 'test_serial_io_handler.h', 81 'test_serial_io_handler.h',
80 ], 82 ],
81 }, 83 },
82 ], 84 ],
83 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698