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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "dbus/services/service_provider_test_helper.cc", | 77 "dbus/services/service_provider_test_helper.cc", |
78 "dbus/services/service_provider_test_helper.h", | 78 "dbus/services/service_provider_test_helper.h", |
79 "disks/mock_disk_mount_manager.cc", | 79 "disks/mock_disk_mount_manager.cc", |
80 "disks/mock_disk_mount_manager.h", | 80 "disks/mock_disk_mount_manager.h", |
81 "login/auth/fake_extended_authenticator.cc", | 81 "login/auth/fake_extended_authenticator.cc", |
82 "login/auth/fake_extended_authenticator.h", | 82 "login/auth/fake_extended_authenticator.h", |
83 "login/auth/mock_auth_attempt_state_resolver.cc", | 83 "login/auth/mock_auth_attempt_state_resolver.cc", |
84 "login/auth/mock_auth_attempt_state_resolver.h", | 84 "login/auth/mock_auth_attempt_state_resolver.h", |
85 "login/auth/mock_auth_status_consumer.cc", | 85 "login/auth/mock_auth_status_consumer.cc", |
86 "login/auth/mock_auth_status_consumer.h", | 86 "login/auth/mock_auth_status_consumer.h", |
87 "login/auth/mock_authenticator.cc", | |
88 "login/auth/mock_authenticator.h", | |
89 "login/auth/mock_url_fetchers.cc", | 87 "login/auth/mock_url_fetchers.cc", |
90 "login/auth/mock_url_fetchers.h", | 88 "login/auth/mock_url_fetchers.h", |
91 "network/fake_network_device_handler.cc", | 89 "network/fake_network_device_handler.cc", |
92 "network/fake_network_device_handler.h", | 90 "network/fake_network_device_handler.h", |
93 "network/mock_managed_network_configuration_handler.cc", | 91 "network/mock_managed_network_configuration_handler.cc", |
94 "network/mock_managed_network_configuration_handler.h", | 92 "network/mock_managed_network_configuration_handler.h", |
95 "network/onc/onc_test_utils.cc", | 93 "network/onc/onc_test_utils.cc", |
96 "network/onc/onc_test_utils.h", | 94 "network/onc/onc_test_utils.h", |
97 "system/fake_statistics_provider.cc", | 95 "system/fake_statistics_provider.cc", |
98 "system/fake_statistics_provider.h", | 96 "system/fake_statistics_provider.h", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 proto_out_dir = "chromeos/dbus/cryptohome" | 170 proto_out_dir = "chromeos/dbus/cryptohome" |
173 } | 171 } |
174 | 172 |
175 proto_library("cryptohome_signkey_proto") { | 173 proto_library("cryptohome_signkey_proto") { |
176 sources = [ | 174 sources = [ |
177 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 175 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
178 ] | 176 ] |
179 | 177 |
180 proto_out_dir = "chromeos/cryptohome" | 178 proto_out_dir = "chromeos/cryptohome" |
181 } | 179 } |
OLD | NEW |