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 static_library("cryptauth") { | 5 static_library("cryptauth") { |
brettw
2016/11/17 01:17:51
Would you mind putting a comment here with a high-
Kyle Horimoto
2016/11/18 01:22:23
Done.
| |
6 sources = [ | 6 sources = [ |
7 "cryptauth_access_token_fetcher.h", | 7 "cryptauth_access_token_fetcher.h", |
8 "cryptauth_access_token_fetcher_impl.cc", | 8 "cryptauth_access_token_fetcher_impl.cc", |
9 "cryptauth_access_token_fetcher_impl.h", | 9 "cryptauth_access_token_fetcher_impl.h", |
10 "cryptauth_api_call_flow.cc", | 10 "cryptauth_api_call_flow.cc", |
11 "cryptauth_api_call_flow.h", | 11 "cryptauth_api_call_flow.h", |
12 "cryptauth_client.h", | 12 "cryptauth_client.h", |
13 "cryptauth_client_impl.cc", | 13 "cryptauth_client_impl.cc", |
14 "cryptauth_client_impl.h", | 14 "cryptauth_client_impl.h", |
15 "cryptauth_device_manager.cc", | 15 "cryptauth_device_manager.cc", |
(...skipping 26 matching lines...) Expand all Loading... | |
42 "//components/gcm_driver", | 42 "//components/gcm_driver", |
43 "//components/gcm_driver/common", | 43 "//components/gcm_driver/common", |
44 "//components/prefs", | 44 "//components/prefs", |
45 "//components/proximity_auth/logging", | 45 "//components/proximity_auth/logging", |
46 "//crypto", | 46 "//crypto", |
47 "//google_apis", | 47 "//google_apis", |
48 "//net", | 48 "//net", |
49 ] | 49 ] |
50 | 50 |
51 public_deps = [ | 51 public_deps = [ |
52 "//components/proximity_auth/cryptauth/proto", | 52 "//components/cryptauth/proto", |
53 ] | 53 ] |
54 } | 54 } |
55 | 55 |
56 static_library("test_support") { | 56 static_library("test_support") { |
57 testonly = true | 57 testonly = true |
58 | 58 |
59 sources = [ | 59 sources = [ |
60 "fake_cryptauth_gcm_manager.cc", | 60 "fake_cryptauth_gcm_manager.cc", |
61 "fake_cryptauth_gcm_manager.h", | 61 "fake_cryptauth_gcm_manager.h", |
62 "fake_secure_message_delegate.cc", | 62 "fake_secure_message_delegate.cc", |
63 "fake_secure_message_delegate.h", | 63 "fake_secure_message_delegate.h", |
64 "mock_cryptauth_client.cc", | 64 "mock_cryptauth_client.cc", |
65 "mock_cryptauth_client.h", | 65 "mock_cryptauth_client.h", |
66 "mock_sync_scheduler.cc", | 66 "mock_sync_scheduler.cc", |
67 "mock_sync_scheduler.h", | 67 "mock_sync_scheduler.h", |
68 ] | 68 ] |
69 | 69 |
70 public_deps = [ | 70 public_deps = [ |
71 ":cryptauth", | 71 ":cryptauth", |
72 "//components/proximity_auth/cryptauth/proto", | 72 "//components/cryptauth/proto", |
73 ] | 73 ] |
74 | 74 |
75 deps = [ | 75 deps = [ |
76 "//base", | 76 "//base", |
77 "//testing/gmock", | 77 "//testing/gmock", |
78 ] | 78 ] |
79 } | 79 } |
80 | 80 |
81 source_set("unit_tests") { | 81 source_set("unit_tests") { |
82 testonly = true | 82 testonly = true |
(...skipping 14 matching lines...) Expand all Loading... | |
97 ":test_support", | 97 ":test_support", |
98 "//base/test:test_support", | 98 "//base/test:test_support", |
99 "//components/gcm_driver:test_support", | 99 "//components/gcm_driver:test_support", |
100 "//components/prefs:test_support", | 100 "//components/prefs:test_support", |
101 "//components/proximity_auth", | 101 "//components/proximity_auth", |
102 "//google_apis:test_support", | 102 "//google_apis:test_support", |
103 "//net:test_support", | 103 "//net:test_support", |
104 "//testing/gtest", | 104 "//testing/gtest", |
105 ] | 105 ] |
106 } | 106 } |
OLD | NEW |