| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/protobuf/proto_library.gni") | 7 import("//third_party/protobuf/proto_library.gni") |
| 8 | 8 |
| 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") | 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") |
| 10 | 10 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 } | 130 } |
| 131 | 131 |
| 132 static_library("test_support_without_gmock") { | 132 static_library("test_support_without_gmock") { |
| 133 testonly = true | 133 testonly = true |
| 134 configs += [ "//build/config/linux/dbus" ] | 134 configs += [ "//build/config/linux/dbus" ] |
| 135 deps = [ | 135 deps = [ |
| 136 ":attestation_proto", | 136 ":attestation_proto", |
| 137 ":chromeos", | 137 ":chromeos", |
| 138 ":cryptohome_proto", | 138 ":cryptohome_proto", |
| 139 ":power_manager_proto", | 139 ":power_manager_proto", |
| 140 "//components/policy/proto", | |
| 141 "//crypto", | 140 "//crypto", |
| 142 ] | 141 ] |
| 143 sources = [ | 142 sources = [ |
| 144 "dbus/fake_cros_disks_client.cc", | 143 "dbus/fake_cros_disks_client.cc", |
| 145 "dbus/fake_cros_disks_client.h", | 144 "dbus/fake_cros_disks_client.h", |
| 146 "dbus/fake_session_manager_client.cc", | 145 "dbus/fake_session_manager_client.cc", |
| 147 "dbus/fake_session_manager_client.h", | 146 "dbus/fake_session_manager_client.h", |
| 148 "dbus/fake_shill_manager_client.cc", | 147 "dbus/fake_shill_manager_client.cc", |
| 149 "dbus/fake_shill_manager_client.h", | 148 "dbus/fake_shill_manager_client.h", |
| 150 "dbus/fake_update_engine_client.cc", | 149 "dbus/fake_update_engine_client.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 proto_out_dir = "chromeos/cryptohome" | 228 proto_out_dir = "chromeos/cryptohome" |
| 230 } | 229 } |
| 231 | 230 |
| 232 proto_library("authpolicy_proto") { | 231 proto_library("authpolicy_proto") { |
| 233 sources = [ | 232 sources = [ |
| 234 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 233 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 235 ] | 234 ] |
| 236 | 235 |
| 237 proto_out_dir = "chromeos/dbus/authpolicy" | 236 proto_out_dir = "chromeos/dbus/authpolicy" |
| 238 } | 237 } |
| OLD | NEW |