| 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 14 matching lines...) Expand all Loading... |
| 25 "proximity_auth/connection.h", | 25 "proximity_auth/connection.h", |
| 26 "proximity_auth/connection_observer.h", | 26 "proximity_auth/connection_observer.h", |
| 27 "proximity_auth/proximity_auth_system.cc", | 27 "proximity_auth/proximity_auth_system.cc", |
| 28 "proximity_auth/proximity_auth_system.h", | 28 "proximity_auth/proximity_auth_system.h", |
| 29 "proximity_auth/remote_device.h", | 29 "proximity_auth/remote_device.h", |
| 30 "proximity_auth/wire_message.cc", | 30 "proximity_auth/wire_message.cc", |
| 31 "proximity_auth/wire_message.h", | 31 "proximity_auth/wire_message.h", |
| 32 ], | 32 ], |
| 33 }, | 33 }, |
| 34 { | 34 { |
| 35 # GN version: //components/cryptauth/proto |
| 36 'target_name': 'cryptauth_proto', |
| 37 'type': 'static_library', |
| 38 'sources': [ |
| 39 'proximity_auth/cryptauth/proto/cryptauth_api.proto', |
| 40 ], |
| 41 'variables': { |
| 42 'proto_in_dir': 'proximity_auth/cryptauth/proto', |
| 43 'proto_out_dir': 'components/proximity_auth/cryptauth/proto', |
| 44 }, |
| 45 'includes': [ '../build/protoc.gypi' ] |
| 46 }, |
| 47 { |
| 35 'target_name': 'cryptauth', | 48 'target_name': 'cryptauth', |
| 36 'type': 'static_library', | 49 'type': 'static_library', |
| 37 'include_dirs': [ | 50 'include_dirs': [ |
| 38 '..', | 51 '..', |
| 39 ], | 52 ], |
| 40 'dependencies': [ | 53 'dependencies': [ |
| 41 '../base/base.gyp:base', | 54 '../base/base.gyp:base', |
| 42 '../google_apis/google_apis.gyp:google_apis', | 55 '../google_apis/google_apis.gyp:google_apis', |
| 43 '../net/net.gyp:net', | 56 '../net/net.gyp:net', |
| 44 ], | 57 ], |
| 45 'sources': [ | 58 'sources': [ |
| 46 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", | 59 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", |
| 47 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", | 60 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", |
| 48 ], | 61 ], |
| 49 }, | 62 }, |
| 50 ], | 63 ], |
| 51 } | 64 } |
| OLD | NEW |