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 source_set("cryptauth") { | 5 source_set("cryptauth") { |
6 sources = [ | 6 sources = [ |
7 "base64url.cc", | 7 "base64url.cc", |
8 "base64url.h", | 8 "base64url.h", |
9 "cryptauth_access_token_fetcher.h", | 9 "cryptauth_access_token_fetcher.h", |
10 "cryptauth_access_token_fetcher_impl.cc", | 10 "cryptauth_access_token_fetcher_impl.cc", |
11 "cryptauth_access_token_fetcher_impl.h", | 11 "cryptauth_access_token_fetcher_impl.h", |
12 "cryptauth_api_call_flow.cc", | 12 "cryptauth_api_call_flow.cc", |
13 "cryptauth_api_call_flow.h", | 13 "cryptauth_api_call_flow.h", |
14 "cryptauth_client.h", | 14 "cryptauth_client.h", |
15 "cryptauth_client_impl.cc", | 15 "cryptauth_client_impl.cc", |
16 "cryptauth_client_impl.h", | 16 "cryptauth_client_impl.h", |
17 "cryptauth_device_manager.cc", | 17 "cryptauth_device_manager.cc", |
18 "cryptauth_device_manager.h", | 18 "cryptauth_device_manager.h", |
19 "cryptauth_enroller.h", | 19 "cryptauth_enroller.h", |
20 "cryptauth_enroller_impl.cc", | 20 "cryptauth_enroller_impl.cc", |
21 "cryptauth_enroller_impl.h", | 21 "cryptauth_enroller_impl.h", |
22 "cryptauth_enrollment_manager.cc", | 22 "cryptauth_enrollment_manager.cc", |
23 "cryptauth_enrollment_manager.h", | 23 "cryptauth_enrollment_manager.h", |
24 "cryptauth_enrollment_utils.cc", | 24 "cryptauth_enrollment_utils.cc", |
25 "cryptauth_enrollment_utils.h", | 25 "cryptauth_enrollment_utils.h", |
| 26 "cryptauth_gcm_manager.cc", |
| 27 "cryptauth_gcm_manager.h", |
| 28 "cryptauth_gcm_manager_impl.cc", |
| 29 "cryptauth_gcm_manager_impl.h", |
26 "pref_names.cc", | 30 "pref_names.cc", |
27 "pref_names.h", | 31 "pref_names.h", |
28 "secure_message_delegate.cc", | 32 "secure_message_delegate.cc", |
29 "secure_message_delegate.h", | 33 "secure_message_delegate.h", |
30 "sync_scheduler.cc", | 34 "sync_scheduler.cc", |
31 "sync_scheduler.h", | 35 "sync_scheduler.h", |
32 "sync_scheduler_impl.cc", | 36 "sync_scheduler_impl.cc", |
33 "sync_scheduler_impl.h", | 37 "sync_scheduler_impl.h", |
34 ] | 38 ] |
35 | 39 |
36 deps = [ | 40 deps = [ |
37 "//base", | 41 "//base", |
38 "//crypto", | 42 "//crypto", |
| 43 "//components/gcm_driver", |
39 "//components/proximity_auth/logging", | 44 "//components/proximity_auth/logging", |
40 "//google_apis", | 45 "//google_apis", |
41 "//net", | 46 "//net", |
42 ] | 47 ] |
43 | 48 |
44 public_deps = [ | 49 public_deps = [ |
45 "proto", | 50 "proto", |
46 ] | 51 ] |
47 } | 52 } |
48 | 53 |
(...skipping 23 matching lines...) Expand all Loading... |
72 source_set("unit_tests") { | 77 source_set("unit_tests") { |
73 testonly = true | 78 testonly = true |
74 sources = [ | 79 sources = [ |
75 "base64url_unittest.cc", | 80 "base64url_unittest.cc", |
76 "cryptauth_access_token_fetcher_impl_unittest.cc", | 81 "cryptauth_access_token_fetcher_impl_unittest.cc", |
77 "cryptauth_api_call_flow_unittest.cc", | 82 "cryptauth_api_call_flow_unittest.cc", |
78 "cryptauth_client_impl_unittest.cc", | 83 "cryptauth_client_impl_unittest.cc", |
79 "cryptauth_device_manager_unittest.cc", | 84 "cryptauth_device_manager_unittest.cc", |
80 "cryptauth_enroller_impl_unittest.cc", | 85 "cryptauth_enroller_impl_unittest.cc", |
81 "cryptauth_enrollment_manager_unittest.cc", | 86 "cryptauth_enrollment_manager_unittest.cc", |
| 87 "cryptauth_gcm_manager_impl_unittest.cc", |
82 "fake_secure_message_delegate_unittest.cc", | 88 "fake_secure_message_delegate_unittest.cc", |
83 "sync_scheduler_impl_unittest.cc", | 89 "sync_scheduler_impl_unittest.cc", |
84 ] | 90 ] |
85 | 91 |
86 deps = [ | 92 deps = [ |
87 ":cryptauth", | 93 ":cryptauth", |
88 ":test_support", | 94 ":test_support", |
89 "//base:prefs_test_support", | 95 "//base:prefs_test_support", |
90 "//base/test:test_support", | 96 "//base/test:test_support", |
| 97 "//components/gcm_driver:test_support", |
91 "//google_apis:test_support", | 98 "//google_apis:test_support", |
92 "//net:test_support", | 99 "//net:test_support", |
93 "//testing/gtest", | 100 "//testing/gtest", |
94 ] | 101 ] |
95 } | 102 } |
OLD | NEW |