Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: components/cryptauth/BUILD.gn

Issue 2951303002: [CrOS Tether] Move LocalDeviceDataProvider from //chromeos/components/tether to //components/crypta… (Closed)
Patch Set: Rebased. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "data_with_timestamp.cc", 43 "data_with_timestamp.cc",
44 "data_with_timestamp.h", 44 "data_with_timestamp.h",
45 "device_to_device_authenticator.cc", 45 "device_to_device_authenticator.cc",
46 "device_to_device_authenticator.h", 46 "device_to_device_authenticator.h",
47 "device_to_device_initiator_operations.cc", 47 "device_to_device_initiator_operations.cc",
48 "device_to_device_initiator_operations.h", 48 "device_to_device_initiator_operations.h",
49 "device_to_device_secure_context.cc", 49 "device_to_device_secure_context.cc",
50 "device_to_device_secure_context.h", 50 "device_to_device_secure_context.h",
51 "foreground_eid_generator.cc", 51 "foreground_eid_generator.cc",
52 "foreground_eid_generator.h", 52 "foreground_eid_generator.h",
53 "local_device_data_provider.cc",
54 "local_device_data_provider.h",
53 "pref_names.cc", 55 "pref_names.cc",
54 "pref_names.h", 56 "pref_names.h",
55 "raw_eid_generator.h", 57 "raw_eid_generator.h",
56 "raw_eid_generator_impl.cc", 58 "raw_eid_generator_impl.cc",
57 "raw_eid_generator_impl.h", 59 "raw_eid_generator_impl.h",
58 "remote_beacon_seed_fetcher.cc", 60 "remote_beacon_seed_fetcher.cc",
59 "remote_beacon_seed_fetcher.h", 61 "remote_beacon_seed_fetcher.h",
60 "remote_device.cc", 62 "remote_device.cc",
61 "remote_device.h", 63 "remote_device.h",
62 "remote_device_loader.cc", 64 "remote_device_loader.cc",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "fake_secure_channel.cc", 119 "fake_secure_channel.cc",
118 "fake_secure_channel.h", 120 "fake_secure_channel.h",
119 "fake_secure_context.cc", 121 "fake_secure_context.cc",
120 "fake_secure_context.h", 122 "fake_secure_context.h",
121 "fake_secure_message_delegate.cc", 123 "fake_secure_message_delegate.cc",
122 "fake_secure_message_delegate.h", 124 "fake_secure_message_delegate.h",
123 "mock_cryptauth_client.cc", 125 "mock_cryptauth_client.cc",
124 "mock_cryptauth_client.h", 126 "mock_cryptauth_client.h",
125 "mock_foreground_eid_generator.cc", 127 "mock_foreground_eid_generator.cc",
126 "mock_foreground_eid_generator.h", 128 "mock_foreground_eid_generator.h",
129 "mock_local_device_data_provider.cc",
130 "mock_local_device_data_provider.h",
127 "mock_remote_beacon_seed_fetcher.cc", 131 "mock_remote_beacon_seed_fetcher.cc",
128 "mock_remote_beacon_seed_fetcher.h", 132 "mock_remote_beacon_seed_fetcher.h",
129 "mock_sync_scheduler.cc", 133 "mock_sync_scheduler.cc",
130 "mock_sync_scheduler.h", 134 "mock_sync_scheduler.h",
131 "remote_device_test_util.cc", 135 "remote_device_test_util.cc",
132 "remote_device_test_util.h", 136 "remote_device_test_util.h",
133 ] 137 ]
134 138
135 public_deps = [ 139 public_deps = [
136 ":cryptauth", 140 ":cryptauth",
(...skipping 18 matching lines...) Expand all
155 "cryptauth_client_impl_unittest.cc", 159 "cryptauth_client_impl_unittest.cc",
156 "cryptauth_device_manager_unittest.cc", 160 "cryptauth_device_manager_unittest.cc",
157 "cryptauth_enroller_impl_unittest.cc", 161 "cryptauth_enroller_impl_unittest.cc",
158 "cryptauth_enrollment_manager_unittest.cc", 162 "cryptauth_enrollment_manager_unittest.cc",
159 "cryptauth_gcm_manager_impl_unittest.cc", 163 "cryptauth_gcm_manager_impl_unittest.cc",
160 "device_to_device_authenticator_unittest.cc", 164 "device_to_device_authenticator_unittest.cc",
161 "device_to_device_operations_unittest.cc", 165 "device_to_device_operations_unittest.cc",
162 "device_to_device_secure_context_unittest.cc", 166 "device_to_device_secure_context_unittest.cc",
163 "fake_secure_message_delegate_unittest.cc", 167 "fake_secure_message_delegate_unittest.cc",
164 "foreground_eid_generator_unittest.cc", 168 "foreground_eid_generator_unittest.cc",
169 "local_device_data_provider_unittest.cc",
165 "raw_eid_generator_impl_unittest.cc", 170 "raw_eid_generator_impl_unittest.cc",
166 "remote_beacon_seed_fetcher_unittest.cc", 171 "remote_beacon_seed_fetcher_unittest.cc",
167 "remote_device_loader_unittest.cc", 172 "remote_device_loader_unittest.cc",
168 "secure_channel_unittest.cc", 173 "secure_channel_unittest.cc",
169 "session_keys_unittest.cc", 174 "session_keys_unittest.cc",
170 "sync_scheduler_impl_unittest.cc", 175 "sync_scheduler_impl_unittest.cc",
171 "wire_message_unittest.cc", 176 "wire_message_unittest.cc",
172 ] 177 ]
173 178
174 deps = [ 179 deps = [
175 ":cryptauth", 180 ":cryptauth",
176 ":test_support", 181 ":test_support",
177 "//base/test:test_support", 182 "//base/test:test_support",
178 "//components/cryptauth/ble:unit_tests", 183 "//components/cryptauth/ble:unit_tests",
179 "//components/gcm_driver:test_support", 184 "//components/gcm_driver:test_support",
180 "//components/prefs:test_support", 185 "//components/prefs:test_support",
181 "//google_apis:test_support", 186 "//google_apis:test_support",
182 "//net:test_support", 187 "//net:test_support",
183 "//testing/gtest", 188 "//testing/gtest",
184 ] 189 ]
185 } 190 }
OLDNEW
« no previous file with comments | « chromeos/components/tether/mock_local_device_data_provider.cc ('k') | components/cryptauth/local_device_data_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698