| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "cryptauth_test_util.cc", | 92 "cryptauth_test_util.cc", |
| 93 "cryptauth_test_util.h", | 93 "cryptauth_test_util.h", |
| 94 "device_to_device_responder_operations.cc", | 94 "device_to_device_responder_operations.cc", |
| 95 "device_to_device_responder_operations.h", | 95 "device_to_device_responder_operations.h", |
| 96 "fake_authenticator.cc", | 96 "fake_authenticator.cc", |
| 97 "fake_authenticator.h", | 97 "fake_authenticator.h", |
| 98 "fake_connection.cc", | 98 "fake_connection.cc", |
| 99 "fake_connection.h", | 99 "fake_connection.h", |
| 100 "fake_cryptauth_gcm_manager.cc", | 100 "fake_cryptauth_gcm_manager.cc", |
| 101 "fake_cryptauth_gcm_manager.h", | 101 "fake_cryptauth_gcm_manager.h", |
| 102 "fake_secure_channel.cc", |
| 103 "fake_secure_channel.h", |
| 102 "fake_secure_context.cc", | 104 "fake_secure_context.cc", |
| 103 "fake_secure_context.h", | 105 "fake_secure_context.h", |
| 104 "fake_secure_message_delegate.cc", | 106 "fake_secure_message_delegate.cc", |
| 105 "fake_secure_message_delegate.h", | 107 "fake_secure_message_delegate.h", |
| 106 "mock_cryptauth_client.cc", | 108 "mock_cryptauth_client.cc", |
| 107 "mock_cryptauth_client.h", | 109 "mock_cryptauth_client.h", |
| 108 "mock_eid_generator.cc", | 110 "mock_eid_generator.cc", |
| 109 "mock_eid_generator.h", | 111 "mock_eid_generator.h", |
| 110 "mock_remote_beacon_seed_fetcher.cc", | 112 "mock_remote_beacon_seed_fetcher.cc", |
| 111 "mock_remote_beacon_seed_fetcher.h", | 113 "mock_remote_beacon_seed_fetcher.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ":test_support", | 157 ":test_support", |
| 156 "//base/test:test_support", | 158 "//base/test:test_support", |
| 157 "//components/cryptauth/ble:unit_tests", | 159 "//components/cryptauth/ble:unit_tests", |
| 158 "//components/gcm_driver:test_support", | 160 "//components/gcm_driver:test_support", |
| 159 "//components/prefs:test_support", | 161 "//components/prefs:test_support", |
| 160 "//google_apis:test_support", | 162 "//google_apis:test_support", |
| 161 "//net:test_support", | 163 "//net:test_support", |
| 162 "//testing/gtest", | 164 "//testing/gtest", |
| 163 ] | 165 ] |
| 164 } | 166 } |
| OLD | NEW |