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

Side by Side Diff: components/proximity_auth.gypi

Issue 1060483002: Add SecureMessage definitions to CryptAuth. (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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "proximity_auth/wire_message.cc", 43 "proximity_auth/wire_message.cc",
44 "proximity_auth/wire_message.h", 44 "proximity_auth/wire_message.h",
45 ], 45 ],
46 }, 46 },
47 { 47 {
48 # GN version: //components/cryptauth/proto 48 # GN version: //components/cryptauth/proto
49 'target_name': 'cryptauth_proto', 49 'target_name': 'cryptauth_proto',
50 'type': 'static_library', 50 'type': 'static_library',
51 'sources': [ 51 'sources': [
52 'proximity_auth/cryptauth/proto/cryptauth_api.proto', 52 'proximity_auth/cryptauth/proto/cryptauth_api.proto',
53 'proximity_auth/cryptauth/proto/securemessage.proto',
53 ], 54 ],
54 'variables': { 55 'variables': {
55 'proto_in_dir': 'proximity_auth/cryptauth/proto', 56 'proto_in_dir': 'proximity_auth/cryptauth/proto',
56 'proto_out_dir': 'components/proximity_auth/cryptauth/proto', 57 'proto_out_dir': 'components/proximity_auth/cryptauth/proto',
57 }, 58 },
58 'includes': [ '../build/protoc.gypi' ] 59 'includes': [ '../build/protoc.gypi' ]
59 }, 60 },
60 { 61 {
61 'target_name': 'cryptauth', 62 'target_name': 'cryptauth',
62 'type': 'static_library', 63 'type': 'static_library',
63 'include_dirs': [ 64 'include_dirs': [
64 '..', 65 '..',
65 ], 66 ],
66 'dependencies': [ 67 'dependencies': [
67 'cryptauth_proto', 68 'cryptauth_proto',
68 '../base/base.gyp:base', 69 '../base/base.gyp:base',
69 '../google_apis/google_apis.gyp:google_apis', 70 '../google_apis/google_apis.gyp:google_apis',
70 '../net/net.gyp:net', 71 '../net/net.gyp:net',
71 ], 72 ],
72 'sources': [ 73 'sources': [
73 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h", 74 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h",
74 "proximity_auth/cryptauth/cryptauth_account_token_fetcher.cc", 75 "proximity_auth/cryptauth/cryptauth_account_token_fetcher.cc",
75 "proximity_auth/cryptauth/cryptauth_account_token_fetcher.h", 76 "proximity_auth/cryptauth/cryptauth_account_token_fetcher.h",
76 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", 77 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc",
77 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", 78 "proximity_auth/cryptauth/cryptauth_api_call_flow.h",
78 "proximity_auth/cryptauth/cryptauth_client.cc", 79 "proximity_auth/cryptauth/cryptauth_client.cc",
79 "proximity_auth/cryptauth/cryptauth_client.h", 80 "proximity_auth/cryptauth/cryptauth_client.h",
80 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc", 81 "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc",
81 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h", 82 "proximity_auth/cryptauth/cryptauth_enrollment_utils.h",
83 "proximity_auth/cryptauth/secure_message_delegate.cc",
84 "proximity_auth/cryptauth/secure_message_delegate.h",
82 ], 85 ],
83 'export_dependent_settings': [ 86 'export_dependent_settings': [
84 'cryptauth_proto', 87 'cryptauth_proto',
88 ],
89 },
90 {
91 'target_name': 'cryptauth_test_support',
92 'type': 'static_library',
93 'include_dirs': [
94 '..',
95 ],
96 'dependencies': [
97 'cryptauth_proto',
98 '../base/base.gyp:base',
99 ],
100 'sources': [
101 "proximity_auth/cryptauth/fake_secure_message_delegate.cc",
102 "proximity_auth/cryptauth/fake_secure_message_delegate.h",
103 ],
104 'export_dependent_settings': [
105 'cryptauth_proto',
85 ], 106 ],
86 }, 107 },
87 ], 108 ],
88 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698