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 22 matching lines...) Expand all Loading... |
33 "cryptauth_enrollment_manager.cc", | 33 "cryptauth_enrollment_manager.cc", |
34 "cryptauth_enrollment_manager.h", | 34 "cryptauth_enrollment_manager.h", |
35 "cryptauth_enrollment_utils.cc", | 35 "cryptauth_enrollment_utils.cc", |
36 "cryptauth_enrollment_utils.h", | 36 "cryptauth_enrollment_utils.h", |
37 "cryptauth_gcm_manager.cc", | 37 "cryptauth_gcm_manager.cc", |
38 "cryptauth_gcm_manager.h", | 38 "cryptauth_gcm_manager.h", |
39 "cryptauth_gcm_manager_impl.cc", | 39 "cryptauth_gcm_manager_impl.cc", |
40 "cryptauth_gcm_manager_impl.h", | 40 "cryptauth_gcm_manager_impl.h", |
41 "cryptauth_service.cc", | 41 "cryptauth_service.cc", |
42 "cryptauth_service.h", | 42 "cryptauth_service.h", |
| 43 "data_with_timestamp.cc", |
| 44 "data_with_timestamp.h", |
43 "device_to_device_authenticator.cc", | 45 "device_to_device_authenticator.cc", |
44 "device_to_device_authenticator.h", | 46 "device_to_device_authenticator.h", |
45 "device_to_device_initiator_operations.cc", | 47 "device_to_device_initiator_operations.cc", |
46 "device_to_device_initiator_operations.h", | 48 "device_to_device_initiator_operations.h", |
47 "device_to_device_secure_context.cc", | 49 "device_to_device_secure_context.cc", |
48 "device_to_device_secure_context.h", | 50 "device_to_device_secure_context.h", |
49 "foreground_eid_generator.cc", | 51 "foreground_eid_generator.cc", |
50 "foreground_eid_generator.h", | 52 "foreground_eid_generator.h", |
51 "pref_names.cc", | 53 "pref_names.cc", |
52 "pref_names.h", | 54 "pref_names.h", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ":test_support", | 173 ":test_support", |
172 "//base/test:test_support", | 174 "//base/test:test_support", |
173 "//components/cryptauth/ble:unit_tests", | 175 "//components/cryptauth/ble:unit_tests", |
174 "//components/gcm_driver:test_support", | 176 "//components/gcm_driver:test_support", |
175 "//components/prefs:test_support", | 177 "//components/prefs:test_support", |
176 "//google_apis:test_support", | 178 "//google_apis:test_support", |
177 "//net:test_support", | 179 "//net:test_support", |
178 "//testing/gtest", | 180 "//testing/gtest", |
179 ] | 181 ] |
180 } | 182 } |
OLD | NEW |