| Index: chrome/browser/BUILD.gn
|
| diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
|
| index bf72df655929ec03f2154edacbfdb8bcad686501..f5d4868c403a1fe1bc3d6bfffda2f182b3cf1734 100644
|
| --- a/chrome/browser/BUILD.gn
|
| +++ b/chrome/browser/BUILD.gn
|
| @@ -490,11 +490,13 @@ source_set("browser") {
|
| }
|
|
|
| if (is_linux) {
|
| - deps += [
|
| - "//device/media_transfer_protocol",
|
| - "//device/udev_linux",
|
| - ]
|
| + deps += [ "//device/media_transfer_protocol" ]
|
| }
|
| +
|
| + if (use_udev) {
|
| + deps += [ "//device/udev_linux" ]
|
| + }
|
| +
|
| if (is_linux && !is_chromeos) {
|
| deps += [ "//third_party/speech-dispatcher" ]
|
| }
|
|
|