| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "dbus/mock_shill_manager_client.cc", | 86 "dbus/mock_shill_manager_client.cc", |
| 87 "dbus/mock_shill_manager_client.h", | 87 "dbus/mock_shill_manager_client.h", |
| 88 "dbus/mock_shill_profile_client.cc", | 88 "dbus/mock_shill_profile_client.cc", |
| 89 "dbus/mock_shill_profile_client.h", | 89 "dbus/mock_shill_profile_client.h", |
| 90 "dbus/mock_shill_service_client.cc", | 90 "dbus/mock_shill_service_client.cc", |
| 91 "dbus/mock_shill_service_client.h", | 91 "dbus/mock_shill_service_client.h", |
| 92 "dbus/services/service_provider_test_helper.cc", | 92 "dbus/services/service_provider_test_helper.cc", |
| 93 "dbus/services/service_provider_test_helper.h", | 93 "dbus/services/service_provider_test_helper.h", |
| 94 "disks/mock_disk_mount_manager.cc", | 94 "disks/mock_disk_mount_manager.cc", |
| 95 "disks/mock_disk_mount_manager.h", | 95 "disks/mock_disk_mount_manager.h", |
| 96 "geolocation/simple_geolocation_request_test_monitor.cc", | |
| 97 "geolocation/simple_geolocation_request_test_monitor.h", | |
| 98 "login/auth/fake_extended_authenticator.cc", | 96 "login/auth/fake_extended_authenticator.cc", |
| 99 "login/auth/fake_extended_authenticator.h", | 97 "login/auth/fake_extended_authenticator.h", |
| 100 "login/auth/mock_auth_attempt_state_resolver.cc", | 98 "login/auth/mock_auth_attempt_state_resolver.cc", |
| 101 "login/auth/mock_auth_attempt_state_resolver.h", | 99 "login/auth/mock_auth_attempt_state_resolver.h", |
| 102 "login/auth/mock_auth_status_consumer.cc", | 100 "login/auth/mock_auth_status_consumer.cc", |
| 103 "login/auth/mock_auth_status_consumer.h", | 101 "login/auth/mock_auth_status_consumer.h", |
| 104 "login/auth/mock_url_fetchers.cc", | 102 "login/auth/mock_url_fetchers.cc", |
| 105 "login/auth/mock_url_fetchers.h", | 103 "login/auth/mock_url_fetchers.h", |
| 106 "network/fake_network_device_handler.cc", | 104 "network/fake_network_device_handler.cc", |
| 107 "network/fake_network_device_handler.h", | 105 "network/fake_network_device_handler.h", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 proto_out_dir = "chromeos/dbus/cryptohome" | 191 proto_out_dir = "chromeos/dbus/cryptohome" |
| 194 } | 192 } |
| 195 | 193 |
| 196 proto_library("cryptohome_signkey_proto") { | 194 proto_library("cryptohome_signkey_proto") { |
| 197 sources = [ | 195 sources = [ |
| 198 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 196 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 199 ] | 197 ] |
| 200 | 198 |
| 201 proto_out_dir = "chromeos/cryptohome" | 199 proto_out_dir = "chromeos/cryptohome" |
| 202 } | 200 } |
| OLD | NEW |