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