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

Side by Side Diff: components/proximity_auth.gypi

Issue 1316543003: Refactor ProximityAuthUIDelegate functions to ProximityAuthClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 }, 96 },
97 { 97 {
98 'target_name': 'proximity_auth_test_support', 98 'target_name': 'proximity_auth_test_support',
99 'type': 'static_library', 99 'type': 'static_library',
100 'include_dirs': [ 100 'include_dirs': [
101 '..', 101 '..',
102 ], 102 ],
103 'dependencies': [ 103 'dependencies': [
104 ':cryptauth_test_support', 104 ':cryptauth_test_support',
105 '../base/base.gyp:base', 105 '../base/base.gyp:base',
106 '../testing/gmock.gyp:gmock',
106 ], 107 ],
107 'sources': [ 108 'sources': [
108 "proximity_auth/device_to_device_responder_operations.cc", 109 "proximity_auth/device_to_device_responder_operations.cc",
109 "proximity_auth/device_to_device_responder_operations.h", 110 "proximity_auth/device_to_device_responder_operations.h",
111 "proximity_auth/mock_proximity_auth_client.cc",
112 "proximity_auth/mock_proximity_auth_client.h",
110 ], 113 ],
111 }, 114 },
112 { 115 {
113 # GN version: //components/proximity_auth/logging 116 # GN version: //components/proximity_auth/logging
114 'target_name': 'proximity_auth_logging', 117 'target_name': 'proximity_auth_logging',
115 'type': 'static_library', 118 'type': 'static_library',
116 'include_dirs': [ 119 'include_dirs': [
117 '..', 120 '..',
118 ], 121 ],
119 'dependencies': [ 122 'dependencies': [
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'proximity_auth/webui/proximity_auth_webui_handler.cc', 243 'proximity_auth/webui/proximity_auth_webui_handler.cc',
241 'proximity_auth/webui/proximity_auth_webui_handler.h', 244 'proximity_auth/webui/proximity_auth_webui_handler.h',
242 'proximity_auth/webui/reachable_phone_flow.cc', 245 'proximity_auth/webui/reachable_phone_flow.cc',
243 'proximity_auth/webui/reachable_phone_flow.h', 246 'proximity_auth/webui/reachable_phone_flow.h',
244 'proximity_auth/webui/url_constants.cc', 247 'proximity_auth/webui/url_constants.cc',
245 'proximity_auth/webui/url_constants.h', 248 'proximity_auth/webui/url_constants.h',
246 ], 249 ],
247 }, 250 },
248 ], 251 ],
249 } 252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698