| 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 13 matching lines...) Expand all Loading... |
| 24 "cryptauth_enrollment_manager.cc", | 24 "cryptauth_enrollment_manager.cc", |
| 25 "cryptauth_enrollment_manager.h", | 25 "cryptauth_enrollment_manager.h", |
| 26 "cryptauth_enrollment_utils.cc", | 26 "cryptauth_enrollment_utils.cc", |
| 27 "cryptauth_enrollment_utils.h", | 27 "cryptauth_enrollment_utils.h", |
| 28 "cryptauth_gcm_manager.cc", | 28 "cryptauth_gcm_manager.cc", |
| 29 "cryptauth_gcm_manager.h", | 29 "cryptauth_gcm_manager.h", |
| 30 "cryptauth_gcm_manager_impl.cc", | 30 "cryptauth_gcm_manager_impl.cc", |
| 31 "cryptauth_gcm_manager_impl.h", | 31 "cryptauth_gcm_manager_impl.h", |
| 32 "pref_names.cc", | 32 "pref_names.cc", |
| 33 "pref_names.h", | 33 "pref_names.h", |
| 34 "remote_device.cc", |
| 35 "remote_device.h", |
| 34 "secure_message_delegate.cc", | 36 "secure_message_delegate.cc", |
| 35 "secure_message_delegate.h", | 37 "secure_message_delegate.h", |
| 36 "switches.cc", | 38 "switches.cc", |
| 37 "switches.h", | 39 "switches.h", |
| 38 "sync_scheduler.cc", | 40 "sync_scheduler.cc", |
| 39 "sync_scheduler.h", | 41 "sync_scheduler.h", |
| 40 "sync_scheduler_impl.cc", | 42 "sync_scheduler_impl.cc", |
| 41 "sync_scheduler_impl.h", | 43 "sync_scheduler_impl.h", |
| 42 ] | 44 ] |
| 43 | 45 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ":test_support", | 103 ":test_support", |
| 102 "//base/test:test_support", | 104 "//base/test:test_support", |
| 103 "//components/gcm_driver:test_support", | 105 "//components/gcm_driver:test_support", |
| 104 "//components/prefs:test_support", | 106 "//components/prefs:test_support", |
| 105 "//components/proximity_auth", | 107 "//components/proximity_auth", |
| 106 "//google_apis:test_support", | 108 "//google_apis:test_support", |
| 107 "//net:test_support", | 109 "//net:test_support", |
| 108 "//testing/gtest", | 110 "//testing/gtest", |
| 109 ] | 111 ] |
| 110 } | 112 } |
| OLD | NEW |