| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "login/auth/mock_auth_attempt_state_resolver.cc", | 100 "login/auth/mock_auth_attempt_state_resolver.cc", |
| 101 "login/auth/mock_auth_attempt_state_resolver.h", | 101 "login/auth/mock_auth_attempt_state_resolver.h", |
| 102 "login/auth/mock_auth_status_consumer.cc", | 102 "login/auth/mock_auth_status_consumer.cc", |
| 103 "login/auth/mock_auth_status_consumer.h", | 103 "login/auth/mock_auth_status_consumer.h", |
| 104 "login/auth/mock_url_fetchers.cc", | 104 "login/auth/mock_url_fetchers.cc", |
| 105 "login/auth/mock_url_fetchers.h", | 105 "login/auth/mock_url_fetchers.h", |
| 106 "network/fake_network_device_handler.cc", | 106 "network/fake_network_device_handler.cc", |
| 107 "network/fake_network_device_handler.h", | 107 "network/fake_network_device_handler.h", |
| 108 "network/mock_managed_network_configuration_handler.cc", | 108 "network/mock_managed_network_configuration_handler.cc", |
| 109 "network/mock_managed_network_configuration_handler.h", | 109 "network/mock_managed_network_configuration_handler.h", |
| 110 "network/mock_network_device_handler.cc", |
| 111 "network/mock_network_device_handler.h", |
| 110 "network/onc/onc_test_utils.cc", | 112 "network/onc/onc_test_utils.cc", |
| 111 "network/onc/onc_test_utils.h", | 113 "network/onc/onc_test_utils.h", |
| 112 "system/fake_statistics_provider.cc", | 114 "system/fake_statistics_provider.cc", |
| 113 "system/fake_statistics_provider.h", | 115 "system/fake_statistics_provider.h", |
| 114 ] | 116 ] |
| 115 } | 117 } |
| 116 | 118 |
| 117 static_library("test_support_without_gmock") { | 119 static_library("test_support_without_gmock") { |
| 118 testonly = true | 120 testonly = true |
| 119 configs += [ "//build/config/linux:dbus" ] | 121 configs += [ "//build/config/linux:dbus" ] |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 proto_out_dir = "chromeos/dbus/cryptohome" | 193 proto_out_dir = "chromeos/dbus/cryptohome" |
| 192 } | 194 } |
| 193 | 195 |
| 194 proto_library("cryptohome_signkey_proto") { | 196 proto_library("cryptohome_signkey_proto") { |
| 195 sources = [ | 197 sources = [ |
| 196 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 198 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 197 ] | 199 ] |
| 198 | 200 |
| 199 proto_out_dir = "chromeos/cryptohome" | 201 proto_out_dir = "chromeos/cryptohome" |
| 200 } | 202 } |
| OLD | NEW |