• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3# found in the LICENSE file.
4
5import("//build/config/features.gni")
6
7if (use_udev) {
8  source_set("udev_linux") {
9    sources = [
10      "udev.cc",
11      "udev.h",
12    ]
13
14    deps = [
15      "//base",
16    ]
17
18    configs += [
19      "//build/config/linux:udev",
20    ]
21  }
22}
23