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

Side by Side Diff: components/proximity_auth.gypi

Issue 1080163002: Add new chrome://proximity-auth WebUI for debugging Smart Lock. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 'target_name': 'proximity_auth', 8 'target_name': 'proximity_auth',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 '../base/base.gyp:base', 99 '../base/base.gyp:base',
100 ], 100 ],
101 'sources': [ 101 'sources': [
102 "proximity_auth/cryptauth/fake_secure_message_delegate.cc", 102 "proximity_auth/cryptauth/fake_secure_message_delegate.cc",
103 "proximity_auth/cryptauth/fake_secure_message_delegate.h", 103 "proximity_auth/cryptauth/fake_secure_message_delegate.h",
104 ], 104 ],
105 'export_dependent_settings': [ 105 'export_dependent_settings': [
106 'cryptauth_proto', 106 'cryptauth_proto',
107 ], 107 ],
108 }, 108 },
109 {
110 # GN version: //components/proximity_auth/webui
111 'target_name': 'proximity_auth_webui',
112 'type': 'static_library',
113 'dependencies': [
114 '../base/base.gyp:base',
115 '../content/content.gyp:content_browser',
116 'components_resources.gyp:components_resources',
117 'proximity_auth',
118 'cryptauth',
119 ],
120 'include_dirs': [
121 '..',
122 ],
123 'sources': [
124 'proximity_auth/webui/proximity_auth_ui.cc',
125 'proximity_auth/webui/proximity_auth_ui.h',
126 'proximity_auth/webui/url_constants.cc',
127 'proximity_auth/webui/url_constants.h',
Ilya Sherman 2015/04/14 21:47:53 nit: Please re-alphabetize.
128 'proximity_auth/webui/proximity_auth_webui_handler.cc',
129 'proximity_auth/webui/proximity_auth_webui_handler.h',
130 ],
131 },
109 ], 132 ],
110 } 133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698