| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "message_unittest.cc", | 85 "message_unittest.cc", |
| 86 "mock_unittest.cc", | 86 "mock_unittest.cc", |
| 87 "object_manager_unittest.cc", | 87 "object_manager_unittest.cc", |
| 88 "object_proxy_unittest.cc", | 88 "object_proxy_unittest.cc", |
| 89 "property_unittest.cc", | 89 "property_unittest.cc", |
| 90 "run_all_unittests.cc", | 90 "run_all_unittests.cc", |
| 91 "signal_sender_verification_unittest.cc", | 91 "signal_sender_verification_unittest.cc", |
| 92 "string_util_unittest.cc", | 92 "string_util_unittest.cc", |
| 93 "test_service.cc", | 93 "test_service.cc", |
| 94 "test_service.h", | 94 "test_service.h", |
| 95 "util_unittest.cc", |
| 95 "values_util_unittest.cc", | 96 "values_util_unittest.cc", |
| 96 ] | 97 ] |
| 97 | 98 |
| 98 deps = [ | 99 deps = [ |
| 99 ":dbus", | 100 ":dbus", |
| 100 ":test_proto", | 101 ":test_proto", |
| 101 ":test_support", | 102 ":test_support", |
| 102 "//base/test:test_support", | 103 "//base/test:test_support", |
| 103 "//testing/gmock", | 104 "//testing/gmock", |
| 104 "//testing/gtest", | 105 "//testing/gtest", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 120 deps = [ | 121 deps = [ |
| 121 ":dbus", | 122 ":dbus", |
| 122 "//base", | 123 "//base", |
| 123 "//base/test:test_support", | 124 "//base/test:test_support", |
| 124 ] | 125 ] |
| 125 | 126 |
| 126 configs += [ | 127 configs += [ |
| 127 "//build/config/linux:dbus", | 128 "//build/config/linux:dbus", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| OLD | NEW |