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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 sources = [ | 67 sources = [ |
68 "fake_cryptauth_gcm_manager.cc", | 68 "fake_cryptauth_gcm_manager.cc", |
69 "fake_cryptauth_gcm_manager.h", | 69 "fake_cryptauth_gcm_manager.h", |
70 "fake_secure_message_delegate.cc", | 70 "fake_secure_message_delegate.cc", |
71 "fake_secure_message_delegate.h", | 71 "fake_secure_message_delegate.h", |
72 "mock_cryptauth_client.cc", | 72 "mock_cryptauth_client.cc", |
73 "mock_cryptauth_client.h", | 73 "mock_cryptauth_client.h", |
74 "mock_sync_scheduler.cc", | 74 "mock_sync_scheduler.cc", |
75 "mock_sync_scheduler.h", | 75 "mock_sync_scheduler.h", |
| 76 "remote_device_test_util.cc", |
| 77 "remote_device_test_util.h", |
76 ] | 78 ] |
77 | 79 |
78 public_deps = [ | 80 public_deps = [ |
79 ":cryptauth", | 81 ":cryptauth", |
80 "//components/cryptauth/proto", | 82 "//components/cryptauth/proto", |
81 ] | 83 ] |
82 | 84 |
83 deps = [ | 85 deps = [ |
84 "//base", | 86 "//base", |
85 "//testing/gmock", | 87 "//testing/gmock", |
(...skipping 20 matching lines...) Expand all Loading... |
106 ":test_support", | 108 ":test_support", |
107 "//base/test:test_support", | 109 "//base/test:test_support", |
108 "//components/gcm_driver:test_support", | 110 "//components/gcm_driver:test_support", |
109 "//components/prefs:test_support", | 111 "//components/prefs:test_support", |
110 "//components/proximity_auth", | 112 "//components/proximity_auth", |
111 "//google_apis:test_support", | 113 "//google_apis:test_support", |
112 "//net:test_support", | 114 "//net:test_support", |
113 "//testing/gtest", | 115 "//testing/gtest", |
114 ] | 116 ] |
115 } | 117 } |
OLD | NEW |