| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 # GYP version: device/serial/serial.gyp:device_serial | 7 # GYP version: device/serial/serial.gyp:device_serial |
| 8 static_library("serial") { | 8 static_library("serial") { |
| 9 output_name = "device_serial" | 9 output_name = "device_serial" |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "async_waiter.cc", |
| 13 "async_waiter.h", |
| 12 "buffer.cc", | 14 "buffer.cc", |
| 13 "buffer.h", | 15 "buffer.h", |
| 16 "data_receiver.cc", |
| 17 "data_receiver.h", |
| 18 "data_source_sender.cc", |
| 19 "data_source_sender.h", |
| 14 "serial_connection.cc", | 20 "serial_connection.cc", |
| 15 "serial_connection.h", | 21 "serial_connection.h", |
| 16 "serial_connection_factory.cc", | 22 "serial_connection_factory.cc", |
| 17 "serial_connection_factory.h", | 23 "serial_connection_factory.h", |
| 18 "serial_device_enumerator.cc", | 24 "serial_device_enumerator.cc", |
| 19 "serial_device_enumerator.h", | 25 "serial_device_enumerator.h", |
| 20 "serial_device_enumerator_linux.cc", | 26 "serial_device_enumerator_linux.cc", |
| 21 "serial_device_enumerator_linux.h", | 27 "serial_device_enumerator_linux.h", |
| 22 "serial_device_enumerator_mac.cc", | 28 "serial_device_enumerator_mac.cc", |
| 23 "serial_device_enumerator_mac.h", | 29 "serial_device_enumerator_mac.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 63 } |
| 58 | 64 |
| 59 # GYP version: device/serial/serial.gyp:device_serial_mojo | 65 # GYP version: device/serial/serial.gyp:device_serial_mojo |
| 60 mojom("serial_mojo") { | 66 mojom("serial_mojo") { |
| 61 visibility = [ | 67 visibility = [ |
| 62 ":serial", | 68 ":serial", |
| 63 "//extensions:extensions_renderer_resources_grit", | 69 "//extensions:extensions_renderer_resources_grit", |
| 64 ] | 70 ] |
| 65 | 71 |
| 66 sources = [ | 72 sources = [ |
| 73 "data_stream.mojom", |
| 67 "serial.mojom", | 74 "serial.mojom", |
| 68 ] | 75 ] |
| 69 } | 76 } |
| OLD | NEW |