| 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", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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.h", | 28 "scoped_dbus_error.h", |
| 29 "string_util.cc", | 29 "string_util.cc", |
| 30 "string_util.h", | 30 "string_util.h", |
| 31 "values_util.cc", | 31 "values_util.cc", |
| 32 "values_util.h", | 32 "values_util.h", |
| 33 "util.cc", |
| 34 "util.h", |
| 33 ] | 35 ] |
| 34 | 36 |
| 35 defines = [ | 37 defines = [ |
| 36 "DBUS_IMPLEMENTATION", | 38 "DBUS_IMPLEMENTATION", |
| 37 ] | 39 ] |
| 38 | 40 |
| 39 deps = [ | 41 deps = [ |
| 40 "//base", | 42 "//base", |
| 41 "//third_party/protobuf:protobuf_lite", | 43 "//third_party/protobuf:protobuf_lite", |
| 42 ] | 44 ] |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 deps = [ | 120 deps = [ |
| 119 ":dbus", | 121 ":dbus", |
| 120 "//base", | 122 "//base", |
| 121 "//base/test:test_support", | 123 "//base/test:test_support", |
| 122 ] | 124 ] |
| 123 | 125 |
| 124 configs += [ | 126 configs += [ |
| 125 "//build/config/linux:dbus", | 127 "//build/config/linux:dbus", |
| 126 ] | 128 ] |
| 127 } | 129 } |
| OLD | NEW |