| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "dbus/mock_shill_manager_client.cc", | 94 "dbus/mock_shill_manager_client.cc", |
| 95 "dbus/mock_shill_manager_client.h", | 95 "dbus/mock_shill_manager_client.h", |
| 96 "dbus/mock_shill_profile_client.cc", | 96 "dbus/mock_shill_profile_client.cc", |
| 97 "dbus/mock_shill_profile_client.h", | 97 "dbus/mock_shill_profile_client.h", |
| 98 "dbus/mock_shill_service_client.cc", | 98 "dbus/mock_shill_service_client.cc", |
| 99 "dbus/mock_shill_service_client.h", | 99 "dbus/mock_shill_service_client.h", |
| 100 "dbus/services/service_provider_test_helper.cc", | 100 "dbus/services/service_provider_test_helper.cc", |
| 101 "dbus/services/service_provider_test_helper.h", | 101 "dbus/services/service_provider_test_helper.h", |
| 102 "disks/mock_disk_mount_manager.cc", | 102 "disks/mock_disk_mount_manager.cc", |
| 103 "disks/mock_disk_mount_manager.h", | 103 "disks/mock_disk_mount_manager.h", |
| 104 "disks/mock_disk_mount_manager_observer.cc", |
| 105 "disks/mock_disk_mount_manager_observer.h", |
| 104 "login/auth/fake_extended_authenticator.cc", | 106 "login/auth/fake_extended_authenticator.cc", |
| 105 "login/auth/fake_extended_authenticator.h", | 107 "login/auth/fake_extended_authenticator.h", |
| 106 "login/auth/mock_auth_attempt_state_resolver.cc", | 108 "login/auth/mock_auth_attempt_state_resolver.cc", |
| 107 "login/auth/mock_auth_attempt_state_resolver.h", | 109 "login/auth/mock_auth_attempt_state_resolver.h", |
| 108 "login/auth/mock_auth_status_consumer.cc", | 110 "login/auth/mock_auth_status_consumer.cc", |
| 109 "login/auth/mock_auth_status_consumer.h", | 111 "login/auth/mock_auth_status_consumer.h", |
| 110 "login/auth/mock_url_fetchers.cc", | 112 "login/auth/mock_url_fetchers.cc", |
| 111 "login/auth/mock_url_fetchers.h", | 113 "login/auth/mock_url_fetchers.h", |
| 112 "network/fake_network_device_handler.cc", | 114 "network/fake_network_device_handler.cc", |
| 113 "network/fake_network_device_handler.h", | 115 "network/fake_network_device_handler.h", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 proto_out_dir = "chromeos/dbus/cryptohome" | 205 proto_out_dir = "chromeos/dbus/cryptohome" |
| 204 } | 206 } |
| 205 | 207 |
| 206 proto_library("cryptohome_signkey_proto") { | 208 proto_library("cryptohome_signkey_proto") { |
| 207 sources = [ | 209 sources = [ |
| 208 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 210 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 209 ] | 211 ] |
| 210 | 212 |
| 211 proto_out_dir = "chromeos/cryptohome" | 213 proto_out_dir = "chromeos/cryptohome" |
| 212 } | 214 } |
| OLD | NEW |