| 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 28 matching lines...) Expand all Loading... |
| 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 "device_to_device_authenticator.cc", | 43 "device_to_device_authenticator.cc", |
| 44 "device_to_device_authenticator.h", | 44 "device_to_device_authenticator.h", |
| 45 "device_to_device_initiator_operations.cc", | 45 "device_to_device_initiator_operations.cc", |
| 46 "device_to_device_initiator_operations.h", | 46 "device_to_device_initiator_operations.h", |
| 47 "device_to_device_secure_context.cc", | 47 "device_to_device_secure_context.cc", |
| 48 "device_to_device_secure_context.h", | 48 "device_to_device_secure_context.h", |
| 49 "eid_data_with_timestamp.cc", |
| 50 "eid_data_with_timestamp.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", |
| 53 "raw_eid_generator.h", | 55 "raw_eid_generator.h", |
| 54 "raw_eid_generator_impl.cc", | 56 "raw_eid_generator_impl.cc", |
| 55 "raw_eid_generator_impl.h", | 57 "raw_eid_generator_impl.h", |
| 56 "remote_beacon_seed_fetcher.cc", | 58 "remote_beacon_seed_fetcher.cc", |
| 57 "remote_beacon_seed_fetcher.h", | 59 "remote_beacon_seed_fetcher.h", |
| 58 "remote_device.cc", | 60 "remote_device.cc", |
| (...skipping 112 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 |