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 # CryptAuth is a component which manages data about devices associated with a | 5 # CryptAuth is a component which manages data about devices associated with a |
6 # user's account. This component both sends data about the current device and | 6 # user's account. This component both sends data about the current device and |
7 # requets data about associated devices. | 7 # requets data about associated devices. |
8 | 8 |
9 static_library("cryptauth") { | 9 static_library("cryptauth") { |
10 sources = [ | 10 sources = [ |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "cryptauth_test_util.cc", | 95 "cryptauth_test_util.cc", |
96 "cryptauth_test_util.h", | 96 "cryptauth_test_util.h", |
97 "device_to_device_responder_operations.cc", | 97 "device_to_device_responder_operations.cc", |
98 "device_to_device_responder_operations.h", | 98 "device_to_device_responder_operations.h", |
99 "fake_authenticator.cc", | 99 "fake_authenticator.cc", |
100 "fake_authenticator.h", | 100 "fake_authenticator.h", |
101 "fake_connection.cc", | 101 "fake_connection.cc", |
102 "fake_connection.h", | 102 "fake_connection.h", |
103 "fake_cryptauth_gcm_manager.cc", | 103 "fake_cryptauth_gcm_manager.cc", |
104 "fake_cryptauth_gcm_manager.h", | 104 "fake_cryptauth_gcm_manager.h", |
| 105 "fake_cryptauth_service.cc", |
| 106 "fake_cryptauth_service.h", |
105 "fake_secure_channel.cc", | 107 "fake_secure_channel.cc", |
106 "fake_secure_channel.h", | 108 "fake_secure_channel.h", |
107 "fake_secure_context.cc", | 109 "fake_secure_context.cc", |
108 "fake_secure_context.h", | 110 "fake_secure_context.h", |
109 "fake_secure_message_delegate.cc", | 111 "fake_secure_message_delegate.cc", |
110 "fake_secure_message_delegate.h", | 112 "fake_secure_message_delegate.h", |
111 "mock_cryptauth_client.cc", | 113 "mock_cryptauth_client.cc", |
112 "mock_cryptauth_client.h", | 114 "mock_cryptauth_client.h", |
113 "mock_eid_generator.cc", | 115 "mock_eid_generator.cc", |
114 "mock_eid_generator.h", | 116 "mock_eid_generator.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 ":test_support", | 163 ":test_support", |
162 "//base/test:test_support", | 164 "//base/test:test_support", |
163 "//components/cryptauth/ble:unit_tests", | 165 "//components/cryptauth/ble:unit_tests", |
164 "//components/gcm_driver:test_support", | 166 "//components/gcm_driver:test_support", |
165 "//components/prefs:test_support", | 167 "//components/prefs:test_support", |
166 "//google_apis:test_support", | 168 "//google_apis:test_support", |
167 "//net:test_support", | 169 "//net:test_support", |
168 "//testing/gtest", | 170 "//testing/gtest", |
169 ] | 171 ] |
170 } | 172 } |
OLD | NEW |