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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 }, | 57 }, |
58 'includes': [ '../build/protoc.gypi' ] | 58 'includes': [ '../build/protoc.gypi' ] |
59 }, | 59 }, |
60 { | 60 { |
61 'target_name': 'cryptauth', | 61 'target_name': 'cryptauth', |
62 'type': 'static_library', | 62 'type': 'static_library', |
63 'include_dirs': [ | 63 'include_dirs': [ |
64 '..', | 64 '..', |
65 ], | 65 ], |
66 'dependencies': [ | 66 'dependencies': [ |
67 'cryptauth_proto', | |
67 '../base/base.gyp:base', | 68 '../base/base.gyp:base', |
68 '../google_apis/google_apis.gyp:google_apis', | 69 '../google_apis/google_apis.gyp:google_apis', |
69 '../net/net.gyp:net', | 70 '../net/net.gyp:net', |
70 ], | 71 ], |
71 'sources': [ | 72 'sources': [ |
73 "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h", | |
72 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", | 74 "proximity_auth/cryptauth/cryptauth_api_call_flow.cc", |
73 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", | 75 "proximity_auth/cryptauth/cryptauth_api_call_flow.h", |
76 "proximity_auth/cryptauth/cryptauth_client.cc", | |
77 "proximity_auth/cryptauth/cryptauth_client.h", | |
78 ], | |
79 'export_dependent_settings': [ | |
80 'cryptauth_proto', | |
81 ], | |
82 }, | |
83 { | |
84 # Note: This is a convenience target for ease of rapid iteration during | |
85 # development. It is not executed on any try or build bots. | |
86 # GN version: //components/proximity_auth:proximity_auth_unittests | |
87 'target_name': 'proximity_auth_unittests', | |
Ilya Sherman
2014/11/18 22:30:43
Hmm, do we need this? Since this isn't built on a
Tim Song
2014/12/03 01:18:23
Done.
| |
88 'type': '<(gtest_target_type)', | |
89 'sources': [ | |
90 'proximity_auth/bluetooth_connection_unittest.cc', | |
91 'proximity_auth/bluetooth_connection_finder_unittest.cc', | |
92 'proximity_auth/client_unittest.cc', | |
93 'proximity_auth/connection_unittest.cc', | |
94 'proximity_auth/cryptauth/cryptauth_api_call_flow_unittest.cc', | |
95 'proximity_auth/cryptauth/cryptauth_client_unittest.cc', | |
96 'proximity_auth/proximity_auth_system_unittest.cc', | |
97 'proximity_auth/remote_status_update_unittest.cc', | |
98 'proximity_auth/run_all_unittests.cc', | |
99 'proximity_auth/wire_message_unittest.cc', | |
100 ], | |
101 'include_dirs': [ | |
102 '..', | |
103 ], | |
104 'dependencies': [ | |
105 'proximity_auth', | |
106 'cryptauth', | |
107 '../base/base.gyp:base_prefs_test_support', | |
108 '../base/base.gyp:test_support_base', | |
109 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', | |
110 '../net/net.gyp:net_test_support', | |
111 '../testing/gmock.gyp:gmock', | |
112 '../testing/gtest.gyp:gtest', | |
113 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | |
74 ], | 114 ], |
75 }, | 115 }, |
76 ], | 116 ], |
77 } | 117 } |
OLD | NEW |