OLD | NEW |
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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 # GYP version: device/serial/serial.gyp:device_serial | 8 # GYP version: device/serial/serial.gyp:device_serial |
9 static_library("serial") { | 9 static_library("serial") { |
10 output_name = "device_serial" | 10 output_name = "device_serial" |
11 | 11 |
12 sources = [ | 12 sources = [ |
13 "buffer.cc", | 13 "buffer.cc", |
14 "buffer.h", | 14 "buffer.h", |
15 "data_receiver.cc", | 15 "data_receiver.cc", |
16 "data_receiver.h", | 16 "data_receiver.h", |
17 "data_sender.cc", | 17 "data_sender.cc", |
18 "data_sender.h", | 18 "data_sender.h", |
19 "data_sink_receiver.cc", | 19 "data_sink_receiver.cc", |
20 "data_sink_receiver.h", | 20 "data_sink_receiver.h", |
21 "data_source_sender.cc", | 21 "data_source_sender.cc", |
22 "data_source_sender.h", | 22 "data_source_sender.h", |
23 "serial_connection.cc", | 23 "serial_connection.cc", |
24 "serial_connection.h", | 24 "serial_connection.h", |
25 "serial_connection_factory.cc", | 25 "serial_connection_factory.cc", |
26 "serial_connection_factory.h", | 26 "serial_connection_factory.h", |
27 "serial_device_enumerator.cc", | 27 "serial_device_enumerator.cc", |
28 "serial_device_enumerator.h", | 28 "serial_device_enumerator.h", |
| 29 "serial_device_enumerator_android.cc", |
| 30 "serial_device_enumerator_android.h", |
29 "serial_device_enumerator_linux.cc", | 31 "serial_device_enumerator_linux.cc", |
30 "serial_device_enumerator_linux.h", | 32 "serial_device_enumerator_linux.h", |
31 "serial_device_enumerator_mac.cc", | 33 "serial_device_enumerator_mac.cc", |
32 "serial_device_enumerator_mac.h", | 34 "serial_device_enumerator_mac.h", |
33 "serial_device_enumerator_win.cc", | 35 "serial_device_enumerator_win.cc", |
34 "serial_device_enumerator_win.h", | 36 "serial_device_enumerator_win.h", |
35 "serial_io_handler.cc", | 37 "serial_io_handler.cc", |
36 "serial_io_handler.h", | 38 "serial_io_handler.h", |
37 "serial_io_handler_posix.cc", | 39 "serial_io_handler_posix.cc", |
38 "serial_io_handler_posix.h", | 40 "serial_io_handler_posix.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "//extensions:extensions_renderer_resources_grit", | 81 "//extensions:extensions_renderer_resources_grit", |
80 ] | 82 ] |
81 | 83 |
82 sources = [ | 84 sources = [ |
83 "data_stream.mojom", | 85 "data_stream.mojom", |
84 "data_stream_serialization.mojom", | 86 "data_stream_serialization.mojom", |
85 "serial.mojom", | 87 "serial.mojom", |
86 "serial_serialization.mojom", | 88 "serial_serialization.mojom", |
87 ] | 89 ] |
88 } | 90 } |
OLD | NEW |