| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 component("dbus") { | 7 component("dbus") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bus.cc", | 9 "bus.cc", |
| 10 "bus.h", | 10 "bus.h", |
| 11 "dbus_export.h", | 11 "dbus_export.h", |
| 12 "dbus_statistics.cc", | 12 "dbus_statistics.cc", |
| 13 "dbus_statistics.h", | 13 "dbus_statistics.h", |
| 14 "exported_object.cc", | 14 "exported_object.cc", |
| 15 "exported_object.h", | 15 "exported_object.h", |
| 16 "file_descriptor.cc", | 16 "file_descriptor.cc", |
| 17 "file_descriptor.h", | 17 "file_descriptor.h", |
| 18 "message.cc", | 18 "message.cc", |
| 19 "message.h", | 19 "message.h", |
| 20 "object_manager.cc", | 20 "object_manager.cc", |
| 21 "object_manager.h", | 21 "object_manager.h", |
| 22 "object_path.cc", | 22 "object_path.cc", |
| 23 "object_path.h", | 23 "object_path.h", |
| 24 "object_proxy.cc", | 24 "object_proxy.cc", |
| 25 "object_proxy.h", | 25 "object_proxy.h", |
| 26 "property.cc", | 26 "property.cc", |
| 27 "property.h", | 27 "property.h", |
| 28 "scoped_dbus_error.cc", |
| 28 "scoped_dbus_error.h", | 29 "scoped_dbus_error.h", |
| 29 "string_util.cc", | 30 "string_util.cc", |
| 30 "string_util.h", | 31 "string_util.h", |
| 31 "values_util.cc", | 32 "values_util.cc", |
| 32 "values_util.h", | 33 "values_util.h", |
| 33 "util.cc", | 34 "util.cc", |
| 34 "util.h", | 35 "util.h", |
| 35 ] | 36 ] |
| 36 | 37 |
| 37 defines = [ | 38 defines = [ |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 deps = [ | 124 deps = [ |
| 124 ":dbus", | 125 ":dbus", |
| 125 "//base", | 126 "//base", |
| 126 "//base/test:test_support", | 127 "//base/test:test_support", |
| 127 ] | 128 ] |
| 128 | 129 |
| 129 configs += [ | 130 configs += [ |
| 130 "//build/config/linux:dbus", | 131 "//build/config/linux:dbus", |
| 131 ] | 132 ] |
| 132 } | 133 } |
| OLD | NEW |