| 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 "buffer.cc", |
| 13 "buffer.h", |
| 12 "serial_connection.cc", | 14 "serial_connection.cc", |
| 13 "serial_connection.h", | 15 "serial_connection.h", |
| 14 "serial_connection_factory.cc", | 16 "serial_connection_factory.cc", |
| 15 "serial_connection_factory.h", | 17 "serial_connection_factory.h", |
| 16 "serial_device_enumerator.cc", | 18 "serial_device_enumerator.cc", |
| 17 "serial_device_enumerator.h", | 19 "serial_device_enumerator.h", |
| 18 "serial_device_enumerator_linux.cc", | 20 "serial_device_enumerator_linux.cc", |
| 19 "serial_device_enumerator_linux.h", | 21 "serial_device_enumerator_linux.h", |
| 20 "serial_device_enumerator_mac.cc", | 22 "serial_device_enumerator_mac.cc", |
| 21 "serial_device_enumerator_mac.h", | 23 "serial_device_enumerator_mac.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 mojom("serial_mojo") { | 60 mojom("serial_mojo") { |
| 59 visibility = [ | 61 visibility = [ |
| 60 ":serial", | 62 ":serial", |
| 61 "//extensions:extensions_renderer_resources_grit", | 63 "//extensions:extensions_renderer_resources_grit", |
| 62 ] | 64 ] |
| 63 | 65 |
| 64 sources = [ | 66 sources = [ |
| 65 "serial.mojom", | 67 "serial.mojom", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| OLD | NEW |