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

Side by Side Diff: components/proximity_auth.gypi

Issue 1228763002: Introduce CryptAuthGCMManager, which handles GCM interactions for CryptAuth. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 5 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/proximity_auth/cryptauth/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 { 112 {
113 'target_name': 'cryptauth', 113 'target_name': 'cryptauth',
114 'type': 'static_library', 114 'type': 'static_library',
115 'include_dirs': [ 115 'include_dirs': [
116 '..', 116 '..',
117 ], 117 ],
118 'dependencies': [ 118 'dependencies': [
119 'cryptauth_proto', 119 'cryptauth_proto',
120 '../base/base.gyp:base', 120 '../base/base.gyp:base',
121 '../crypto/crypto.gyp:crypto', 121 '../crypto/crypto.gyp:crypto',
122 '../components/components.gyp:gcm_driver',
122 '../google_apis/google_apis.gyp:google_apis', 123 '../google_apis/google_apis.gyp:google_apis',
123 '../net/net.gyp:net', 124 '../net/net.gyp:net',
124 ], 125 ],
125 'sources': [ 126 'sources': [
126 "proximity_auth/cryptauth/base64url.cc", 127 "proximity_auth/cryptauth/base64url.cc",
127 "proximity_auth/cryptauth/base64url.h", 128 "proximity_auth/cryptauth/base64url.h",
128 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h", 129 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h",
129 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc", 130 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc",
130 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h", 131 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h",
131 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", 132 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc",
132 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", 133 "proximity_auth/cryptauth/cryptauth_api_call_flow.h",
133 "proximity_auth/cryptauth/cryptauth_client.h", 134 "proximity_auth/cryptauth/cryptauth_client.h",
134 "proximity_auth/cryptauth/cryptauth_client_impl.cc", 135 "proximity_auth/cryptauth/cryptauth_client_impl.cc",
135 "proximity_auth/cryptauth/cryptauth_client_impl.h", 136 "proximity_auth/cryptauth/cryptauth_client_impl.h",
136 "proximity_auth/cryptauth/cryptauth_device_manager.cc", 137 "proximity_auth/cryptauth/cryptauth_device_manager.cc",
137 "proximity_auth/cryptauth/cryptauth_device_manager.h", 138 "proximity_auth/cryptauth/cryptauth_device_manager.h",
138 "proximity_auth/cryptauth/cryptauth_enroller.h", 139 "proximity_auth/cryptauth/cryptauth_enroller.h",
139 "proximity_auth/cryptauth/cryptauth_enroller_impl.cc", 140 "proximity_auth/cryptauth/cryptauth_enroller_impl.cc",
140 "proximity_auth/cryptauth/cryptauth_enroller_impl.h", 141 "proximity_auth/cryptauth/cryptauth_enroller_impl.h",
141 "proximity_auth/cryptauth/cryptauth_enrollment_manager.cc", 142 "proximity_auth/cryptauth/cryptauth_enrollment_manager.cc",
142 "proximity_auth/cryptauth/cryptauth_enrollment_manager.h", 143 "proximity_auth/cryptauth/cryptauth_enrollment_manager.h",
143 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc", 144 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc",
145 "proximity_auth/cryptauth/cryptauth_gcm_manager.cc",
146 "proximity_auth/cryptauth/cryptauth_gcm_manager.h",
147 "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.cc",
148 "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.h",
144 "proximity_auth/cryptauth/pref_names.cc", 149 "proximity_auth/cryptauth/pref_names.cc",
145 "proximity_auth/cryptauth/pref_names.h", 150 "proximity_auth/cryptauth/pref_names.h",
146 "proximity_auth/cryptauth/secure_message_delegate.cc", 151 "proximity_auth/cryptauth/secure_message_delegate.cc",
147 "proximity_auth/cryptauth/secure_message_delegate.h", 152 "proximity_auth/cryptauth/secure_message_delegate.h",
148 "proximity_auth/cryptauth/sync_scheduler.cc", 153 "proximity_auth/cryptauth/sync_scheduler.cc",
149 "proximity_auth/cryptauth/sync_scheduler.h", 154 "proximity_auth/cryptauth/sync_scheduler.h",
150 "proximity_auth/cryptauth/sync_scheduler_impl.cc", 155 "proximity_auth/cryptauth/sync_scheduler_impl.cc",
151 "proximity_auth/cryptauth/sync_scheduler_impl.h", 156 "proximity_auth/cryptauth/sync_scheduler_impl.h",
152 ], 157 ],
153 'export_dependent_settings': [ 158 'export_dependent_settings': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'proximity_auth/webui/proximity_auth_ui.h', 204 'proximity_auth/webui/proximity_auth_ui.h',
200 'proximity_auth/webui/proximity_auth_ui_delegate.h', 205 'proximity_auth/webui/proximity_auth_ui_delegate.h',
201 'proximity_auth/webui/proximity_auth_webui_handler.cc', 206 'proximity_auth/webui/proximity_auth_webui_handler.cc',
202 'proximity_auth/webui/proximity_auth_webui_handler.h', 207 'proximity_auth/webui/proximity_auth_webui_handler.h',
203 'proximity_auth/webui/url_constants.cc', 208 'proximity_auth/webui/url_constants.cc',
204 'proximity_auth/webui/url_constants.h', 209 'proximity_auth/webui/url_constants.h',
205 ], 210 ],
206 }, 211 },
207 ], 212 ],
208 } 213 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/proximity_auth/cryptauth/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698