Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 23:27:56
nit: Please alphabetize.
Tim Song
2015/04/15 16:39:37
Done.
| |
| 128 'proximity_auth/webui/proximity_auth_webui_handler.cc', | |
| 129 'proximity_auth/webui/proximity_auth_webui_handler.h', | |
| 130 ], | |
| 131 }, | |
| 109 ], | 132 ], |
| 110 } | 133 } |
| OLD | NEW |