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

Side by Side Diff: components/proximity_auth.gypi

Issue 616233002: Add proto definitions for messages used by CryptAuth APIs and the authentication protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reformat comments Created 6 years, 2 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
« no previous file with comments | « no previous file | components/proximity_auth/cryptauth/proto/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
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 }
OLDNEW
« no previous file with comments | « no previous file | components/proximity_auth/cryptauth/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698