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("//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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "dbus/mock_shill_manager_client.cc", | 68 "dbus/mock_shill_manager_client.cc", |
69 "dbus/mock_shill_manager_client.h", | 69 "dbus/mock_shill_manager_client.h", |
70 "dbus/mock_shill_profile_client.cc", | 70 "dbus/mock_shill_profile_client.cc", |
71 "dbus/mock_shill_profile_client.h", | 71 "dbus/mock_shill_profile_client.h", |
72 "dbus/mock_shill_service_client.cc", | 72 "dbus/mock_shill_service_client.cc", |
73 "dbus/mock_shill_service_client.h", | 73 "dbus/mock_shill_service_client.h", |
74 "dbus/services/service_provider_test_helper.cc", | 74 "dbus/services/service_provider_test_helper.cc", |
75 "dbus/services/service_provider_test_helper.h", | 75 "dbus/services/service_provider_test_helper.h", |
76 "disks/mock_disk_mount_manager.cc", | 76 "disks/mock_disk_mount_manager.cc", |
77 "disks/mock_disk_mount_manager.h", | 77 "disks/mock_disk_mount_manager.h", |
| 78 "login/auth/fake_extended_authenticator.cc", |
| 79 "login/auth/fake_extended_authenticator.h", |
78 "login/auth/mock_auth_attempt_state_resolver.cc", | 80 "login/auth/mock_auth_attempt_state_resolver.cc", |
79 "login/auth/mock_auth_attempt_state_resolver.h", | 81 "login/auth/mock_auth_attempt_state_resolver.h", |
80 "login/auth/mock_auth_status_consumer.cc", | 82 "login/auth/mock_auth_status_consumer.cc", |
81 "login/auth/mock_auth_status_consumer.h", | 83 "login/auth/mock_auth_status_consumer.h", |
82 "login/auth/mock_authenticator.cc", | 84 "login/auth/mock_authenticator.cc", |
83 "login/auth/mock_authenticator.h", | 85 "login/auth/mock_authenticator.h", |
84 "login/auth/mock_url_fetchers.cc", | 86 "login/auth/mock_url_fetchers.cc", |
85 "login/auth/mock_url_fetchers.h", | 87 "login/auth/mock_url_fetchers.h", |
86 "network/fake_network_device_handler.cc", | 88 "network/fake_network_device_handler.cc", |
87 "network/fake_network_device_handler.h", | 89 "network/fake_network_device_handler.h", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 proto_out_dir = "chromeos/dbus/cryptohome" | 173 proto_out_dir = "chromeos/dbus/cryptohome" |
172 } | 174 } |
173 | 175 |
174 proto_library("cryptohome_signkey_proto") { | 176 proto_library("cryptohome_signkey_proto") { |
175 sources = [ | 177 sources = [ |
176 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 178 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
177 ] | 179 ] |
178 | 180 |
179 proto_out_dir = "chromeos/cryptohome" | 181 proto_out_dir = "chromeos/cryptohome" |
180 } | 182 } |
OLD | NEW |