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

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

Issue 363853003: Add a basic Mojo SerialService that implements GetDevices(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « device/device_tests.gyp ('k') | device/serial/serial.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 ], 21 ],
22 }], 22 }],
23 ], 23 ],
24 'variables': { 24 'variables': {
25 'mojom_base_output_dir': 'device/serial', 25 'mojom_base_output_dir': 'device/serial',
26 }, 26 },
27 'includes': [ 27 'includes': [
28 '../../mojo/public/tools/bindings/mojom_bindings_generator.gypi', 28 '../../mojo/public/tools/bindings/mojom_bindings_generator.gypi',
29 ], 29 ],
30 'dependencies': [ 30 'dependencies': [
31 '../../mojo/mojo.gyp:mojo_cpp_bindings',
31 '../../net/net.gyp:net', 32 '../../net/net.gyp:net',
32 ], 33 ],
34 'export_dependent_settings': [
35 '../../mojo/mojo.gyp:mojo_cpp_bindings',
36 ],
33 'sources': [ 37 'sources': [
34 'serial.mojom', 38 'serial.mojom',
35 'serial_device_enumerator.cc', 39 'serial_device_enumerator.cc',
36 'serial_device_enumerator.h', 40 'serial_device_enumerator.h',
37 'serial_device_enumerator_linux.cc', 41 'serial_device_enumerator_linux.cc',
38 'serial_device_enumerator_linux.h', 42 'serial_device_enumerator_linux.h',
39 'serial_device_enumerator_mac.cc', 43 'serial_device_enumerator_mac.cc',
40 'serial_device_enumerator_mac.h', 44 'serial_device_enumerator_mac.h',
41 'serial_device_enumerator_win.cc', 45 'serial_device_enumerator_win.cc',
42 'serial_device_enumerator_win.h', 46 'serial_device_enumerator_win.h',
43 'serial_io_handler.cc', 47 'serial_io_handler.cc',
44 'serial_io_handler.h', 48 'serial_io_handler.h',
45 'serial_io_handler_posix.cc', 49 'serial_io_handler_posix.cc',
46 'serial_io_handler_posix.h', 50 'serial_io_handler_posix.h',
47 'serial_io_handler_win.cc', 51 'serial_io_handler_win.cc',
48 'serial_io_handler_win.h', 52 'serial_io_handler_win.h',
53 'serial_service_impl.cc',
54 'serial_service_impl.h',
49 ], 55 ],
50 }, 56 },
51 ], 57 ],
52 } 58 }
OLDNEW
« no previous file with comments | « device/device_tests.gyp ('k') | device/serial/serial.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698