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

Side by Side Diff: components/proximity_auth.gypi

Issue 1147563002: Add SyncScheduler for scheduling CryptAuth enrollments and syncing devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: refactor out Strategy enum Created 5 years, 7 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/proximity_auth and 8 # GN version: //components/proximity_auth and
9 # //components/proximity_auth/ble. 9 # //components/proximity_auth/ble.
10 'target_name': 'proximity_auth', 10 'target_name': 'proximity_auth',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "proximity_auth/cryptauth/cryptauth_client.h", 116 "proximity_auth/cryptauth/cryptauth_client.h",
117 "proximity_auth/cryptauth/cryptauth_client_impl.cc", 117 "proximity_auth/cryptauth/cryptauth_client_impl.cc",
118 "proximity_auth/cryptauth/cryptauth_client_impl.h", 118 "proximity_auth/cryptauth/cryptauth_client_impl.h",
119 "proximity_auth/cryptauth/cryptauth_enroller.h", 119 "proximity_auth/cryptauth/cryptauth_enroller.h",
120 "proximity_auth/cryptauth/cryptauth_enroller_impl.cc", 120 "proximity_auth/cryptauth/cryptauth_enroller_impl.cc",
121 "proximity_auth/cryptauth/cryptauth_enroller_impl.h", 121 "proximity_auth/cryptauth/cryptauth_enroller_impl.h",
122 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc", 122 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc",
123 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h", 123 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h",
124 "proximity_auth/cryptauth/secure_message_delegate.cc", 124 "proximity_auth/cryptauth/secure_message_delegate.cc",
125 "proximity_auth/cryptauth/secure_message_delegate.h", 125 "proximity_auth/cryptauth/secure_message_delegate.h",
126 "proximity_auth/cryptauth/sync_scheduler.cc",
127 "proximity_auth/cryptauth/sync_scheduler.h",
128 "proximity_auth/cryptauth/sync_scheduler_impl.cc",
129 "proximity_auth/cryptauth/sync_scheduler_impl.h",
126 ], 130 ],
127 'export_dependent_settings': [ 131 'export_dependent_settings': [
128 'cryptauth_proto', 132 'cryptauth_proto',
129 ], 133 ],
130 }, 134 },
131 { 135 {
132 'target_name': 'cryptauth_test_support', 136 'target_name': 'cryptauth_test_support',
133 'type': 'static_library', 137 'type': 'static_library',
134 'include_dirs': [ 138 'include_dirs': [
135 '..', 139 '..',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'proximity_auth/webui/proximity_auth_ui.cc', 171 'proximity_auth/webui/proximity_auth_ui.cc',
168 'proximity_auth/webui/proximity_auth_ui.h', 172 'proximity_auth/webui/proximity_auth_ui.h',
169 'proximity_auth/webui/proximity_auth_webui_handler.cc', 173 'proximity_auth/webui/proximity_auth_webui_handler.cc',
170 'proximity_auth/webui/proximity_auth_webui_handler.h', 174 'proximity_auth/webui/proximity_auth_webui_handler.h',
171 'proximity_auth/webui/url_constants.cc', 175 'proximity_auth/webui/url_constants.cc',
172 'proximity_auth/webui/url_constants.h', 176 'proximity_auth/webui/url_constants.h',
173 ], 177 ],
174 }, 178 },
175 ], 179 ],
176 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698