OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/sysroot.gni") | 6 import("//build/config/sysroot.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//tools/generate_library_loader/generate_library_loader.gni") | 8 import("//tools/generate_library_loader/generate_library_loader.gni") |
9 | 9 |
10 config("sdk") { | 10 config("sdk") { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 generate_library_loader("udev1_loader") { | 110 generate_library_loader("udev1_loader") { |
111 name = "LibUdev1Loader" | 111 name = "LibUdev1Loader" |
112 output_h = "libudev1.h" | 112 output_h = "libudev1.h" |
113 output_cc = "libudev1_loader.cc" | 113 output_cc = "libudev1_loader.cc" |
114 header = "\"third_party/libudev/libudev1.h\"" | 114 header = "\"third_party/libudev/libudev1.h\"" |
115 | 115 |
116 functions = libudev_functions | 116 functions = libudev_functions |
117 } | 117 } |
118 | 118 |
119 group("udev") { | 119 group("udev") { |
120 deps = [ | 120 public_deps = [ |
121 ":udev0_loader", | 121 ":udev0_loader", |
122 ":udev1_loader", | 122 ":udev1_loader", |
123 ] | 123 ] |
124 } | 124 } |
OLD | NEW |