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("//testing/rules.gni") |
5 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
6 | 7 |
7 component("dbus") { | 8 component("dbus") { |
8 sources = [ | 9 sources = [ |
9 "bus.cc", | 10 "bus.cc", |
10 "bus.h", | 11 "bus.h", |
11 "dbus_export.h", | 12 "dbus_export.h", |
12 "dbus_statistics.cc", | 13 "dbus_statistics.cc", |
13 "dbus_statistics.h", | 14 "dbus_statistics.h", |
14 "exported_object.cc", | 15 "exported_object.cc", |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 ] | 117 ] |
117 | 118 |
118 deps = [ | 119 deps = [ |
119 ":dbus", | 120 ":dbus", |
120 "//base", | 121 "//base", |
121 "//base/test:test_support", | 122 "//base/test:test_support", |
122 ] | 123 ] |
123 | 124 |
124 configs += [ "//build/config/linux:dbus" ] | 125 configs += [ "//build/config/linux:dbus" ] |
125 } | 126 } |
OLD | NEW |