Chromium Code Reviews| Index: device/serial/BUILD.gn |
| diff --git a/device/serial/BUILD.gn b/device/serial/BUILD.gn |
| index 7ac28a55053cba5f1a27697ca9ac44a0026f13e9..eed42cba94e78233cf0187e946d8153056656221 100644 |
| --- a/device/serial/BUILD.gn |
| +++ b/device/serial/BUILD.gn |
| @@ -41,13 +41,14 @@ static_library("serial") { |
| "serial_service_impl.h", |
| ] |
| - if (is_linux) { |
| - configs += [ "//build/config/linux:udev" ] |
| - } |
| - |
| public_deps = [ |
| ":serial_mojo", |
| ] |
| + deps = [] |
| + |
| + if (is_linux) { |
| + deps += [ "//device/udev_linux" ] |
| + } |
| } |
| # GYP version: device/serial/serial.gyp:device_serial_test_util |