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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "remote_beacon_seed_fetcher.h", | 59 "remote_beacon_seed_fetcher.h", |
60 "remote_device.cc", | 60 "remote_device.cc", |
61 "remote_device.h", | 61 "remote_device.h", |
62 "remote_device_loader.cc", | 62 "remote_device_loader.cc", |
63 "remote_device_loader.h", | 63 "remote_device_loader.h", |
64 "secure_channel.cc", | 64 "secure_channel.cc", |
65 "secure_channel.h", | 65 "secure_channel.h", |
66 "secure_context.h", | 66 "secure_context.h", |
67 "secure_message_delegate.cc", | 67 "secure_message_delegate.cc", |
68 "secure_message_delegate.h", | 68 "secure_message_delegate.h", |
| 69 "session_keys.cc", |
| 70 "session_keys.h", |
69 "switches.cc", | 71 "switches.cc", |
70 "switches.h", | 72 "switches.h", |
71 "sync_scheduler.cc", | 73 "sync_scheduler.cc", |
72 "sync_scheduler.h", | 74 "sync_scheduler.h", |
73 "sync_scheduler_impl.cc", | 75 "sync_scheduler_impl.cc", |
74 "sync_scheduler_impl.h", | 76 "sync_scheduler_impl.h", |
75 "wire_message.cc", | 77 "wire_message.cc", |
76 "wire_message.h", | 78 "wire_message.h", |
77 ] | 79 ] |
78 | 80 |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "cryptauth_gcm_manager_impl_unittest.cc", | 159 "cryptauth_gcm_manager_impl_unittest.cc", |
158 "device_to_device_authenticator_unittest.cc", | 160 "device_to_device_authenticator_unittest.cc", |
159 "device_to_device_operations_unittest.cc", | 161 "device_to_device_operations_unittest.cc", |
160 "device_to_device_secure_context_unittest.cc", | 162 "device_to_device_secure_context_unittest.cc", |
161 "fake_secure_message_delegate_unittest.cc", | 163 "fake_secure_message_delegate_unittest.cc", |
162 "foreground_eid_generator_unittest.cc", | 164 "foreground_eid_generator_unittest.cc", |
163 "raw_eid_generator_impl_unittest.cc", | 165 "raw_eid_generator_impl_unittest.cc", |
164 "remote_beacon_seed_fetcher_unittest.cc", | 166 "remote_beacon_seed_fetcher_unittest.cc", |
165 "remote_device_loader_unittest.cc", | 167 "remote_device_loader_unittest.cc", |
166 "secure_channel_unittest.cc", | 168 "secure_channel_unittest.cc", |
| 169 "session_keys_unittest.cc", |
167 "sync_scheduler_impl_unittest.cc", | 170 "sync_scheduler_impl_unittest.cc", |
168 "wire_message_unittest.cc", | 171 "wire_message_unittest.cc", |
169 ] | 172 ] |
170 | 173 |
171 deps = [ | 174 deps = [ |
172 ":cryptauth", | 175 ":cryptauth", |
173 ":test_support", | 176 ":test_support", |
174 "//base/test:test_support", | 177 "//base/test:test_support", |
175 "//components/cryptauth/ble:unit_tests", | 178 "//components/cryptauth/ble:unit_tests", |
176 "//components/gcm_driver:test_support", | 179 "//components/gcm_driver:test_support", |
177 "//components/prefs:test_support", | 180 "//components/prefs:test_support", |
178 "//google_apis:test_support", | 181 "//google_apis:test_support", |
179 "//net:test_support", | 182 "//net:test_support", |
180 "//testing/gtest", | 183 "//testing/gtest", |
181 ] | 184 ] |
182 } | 185 } |
OLD | NEW |