| 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': [ |
| 11 '..', | 11 '..', |
| 12 ], | 12 ], |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 15 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
| 16 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 "proximity_auth/base64url.cc", | |
| 20 "proximity_auth/base64url.h", | |
| 21 "proximity_auth/bluetooth_connection.cc", | 19 "proximity_auth/bluetooth_connection.cc", |
| 22 "proximity_auth/bluetooth_connection.h", | 20 "proximity_auth/bluetooth_connection.h", |
| 23 "proximity_auth/bluetooth_connection_finder.cc", | 21 "proximity_auth/bluetooth_connection_finder.cc", |
| 24 "proximity_auth/bluetooth_connection_finder.h", | 22 "proximity_auth/bluetooth_connection_finder.h", |
| 25 "proximity_auth/bluetooth_util.cc", | 23 "proximity_auth/bluetooth_util.cc", |
| 26 "proximity_auth/bluetooth_util.h", | 24 "proximity_auth/bluetooth_util.h", |
| 27 "proximity_auth/bluetooth_util_chromeos.cc", | 25 "proximity_auth/bluetooth_util_chromeos.cc", |
| 28 "proximity_auth/client.cc", | 26 "proximity_auth/client.cc", |
| 29 "proximity_auth/client.h", | 27 "proximity_auth/client.h", |
| 30 "proximity_auth/client_observer.h", | 28 "proximity_auth/client_observer.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'include_dirs': [ | 62 'include_dirs': [ |
| 65 '..', | 63 '..', |
| 66 ], | 64 ], |
| 67 'dependencies': [ | 65 'dependencies': [ |
| 68 'cryptauth_proto', | 66 'cryptauth_proto', |
| 69 '../base/base.gyp:base', | 67 '../base/base.gyp:base', |
| 70 '../google_apis/google_apis.gyp:google_apis', | 68 '../google_apis/google_apis.gyp:google_apis', |
| 71 '../net/net.gyp:net', | 69 '../net/net.gyp:net', |
| 72 ], | 70 ], |
| 73 'sources': [ | 71 'sources': [ |
| 72 "proximity_auth/cryptauth/base64url.cc", |
| 73 "proximity_auth/cryptauth/base64url.h", |
| 74 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h", | 74 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h", |
| 75 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc", | 75 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc", |
| 76 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h", | 76 "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h", |
| 77 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", | 77 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", |
| 78 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", | 78 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", |
| 79 "proximity_auth/cryptauth/cryptauth_client.h", | 79 "proximity_auth/cryptauth/cryptauth_client.h", |
| 80 "proximity_auth/cryptauth/cryptauth_client_impl.cc", | 80 "proximity_auth/cryptauth/cryptauth_client_impl.cc", |
| 81 "proximity_auth/cryptauth/cryptauth_client_impl.h", | 81 "proximity_auth/cryptauth/cryptauth_client_impl.h", |
| 82 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc", | 82 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc", |
| 83 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h", | 83 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 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 ], | 109 ], |
| 110 } | 110 } |
| OLD | NEW |