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/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
9 | 9 |
10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") | 10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "chromeos_test_utils.cc", | 59 "chromeos_test_utils.cc", |
60 "chromeos_test_utils.h", | 60 "chromeos_test_utils.h", |
61 "cryptohome/mock_async_method_caller.cc", | 61 "cryptohome/mock_async_method_caller.cc", |
62 "cryptohome/mock_async_method_caller.h", | 62 "cryptohome/mock_async_method_caller.h", |
63 "cryptohome/mock_homedir_methods.cc", | 63 "cryptohome/mock_homedir_methods.cc", |
64 "cryptohome/mock_homedir_methods.h", | 64 "cryptohome/mock_homedir_methods.h", |
65 "dbus/mock_cryptohome_client.cc", | 65 "dbus/mock_cryptohome_client.cc", |
66 "dbus/mock_cryptohome_client.h", | 66 "dbus/mock_cryptohome_client.h", |
67 "dbus/mock_lorgnette_manager_client.cc", | 67 "dbus/mock_lorgnette_manager_client.cc", |
68 "dbus/mock_lorgnette_manager_client.h", | 68 "dbus/mock_lorgnette_manager_client.h", |
| 69 "dbus/mock_permission_broker_client.cc", |
| 70 "dbus/mock_permission_broker_client.h", |
69 "dbus/mock_session_manager_client.cc", | 71 "dbus/mock_session_manager_client.cc", |
70 "dbus/mock_session_manager_client.h", | 72 "dbus/mock_session_manager_client.h", |
71 "dbus/mock_shill_manager_client.cc", | 73 "dbus/mock_shill_manager_client.cc", |
72 "dbus/mock_shill_manager_client.h", | 74 "dbus/mock_shill_manager_client.h", |
73 "dbus/mock_shill_profile_client.cc", | 75 "dbus/mock_shill_profile_client.cc", |
74 "dbus/mock_shill_profile_client.h", | 76 "dbus/mock_shill_profile_client.h", |
75 "dbus/mock_shill_service_client.cc", | 77 "dbus/mock_shill_service_client.cc", |
76 "dbus/mock_shill_service_client.h", | 78 "dbus/mock_shill_service_client.h", |
77 "dbus/services/service_provider_test_helper.cc", | 79 "dbus/services/service_provider_test_helper.cc", |
78 "dbus/services/service_provider_test_helper.h", | 80 "dbus/services/service_provider_test_helper.h", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 proto_out_dir = "chromeos/dbus/cryptohome" | 172 proto_out_dir = "chromeos/dbus/cryptohome" |
171 } | 173 } |
172 | 174 |
173 proto_library("cryptohome_signkey_proto") { | 175 proto_library("cryptohome_signkey_proto") { |
174 sources = [ | 176 sources = [ |
175 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 177 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
176 ] | 178 ] |
177 | 179 |
178 proto_out_dir = "chromeos/cryptohome" | 180 proto_out_dir = "chromeos/cryptohome" |
179 } | 181 } |
OLD | NEW |