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_enroller.h", | 17 "cryptauth_enroller.h", |
18 "cryptauth_enroller_impl.cc", | 18 "cryptauth_enroller_impl.cc", |
19 "cryptauth_enroller_impl.h", | 19 "cryptauth_enroller_impl.h", |
20 "cryptauth_enrollment_utils.cc", | 20 "cryptauth_enrollment_utils.cc", |
21 "cryptauth_enrollment_utils.h", | 21 "cryptauth_enrollment_utils.h", |
22 "secure_message_delegate.cc", | 22 "secure_message_delegate.cc", |
23 "secure_message_delegate.h", | 23 "secure_message_delegate.h", |
| 24 "sync_scheduler.cc", |
| 25 "sync_scheduler.h", |
| 26 "sync_scheduler_impl.cc", |
| 27 "sync_scheduler_impl.h", |
24 ] | 28 ] |
25 | 29 |
26 deps = [ | 30 deps = [ |
27 "//base", | 31 "//base", |
28 "//components/proximity_auth/logging", | 32 "//components/proximity_auth/logging", |
29 "//google_apis", | 33 "//google_apis", |
30 "//net", | 34 "//net", |
31 ] | 35 ] |
32 | 36 |
33 public_deps = [ | 37 public_deps = [ |
(...skipping 24 matching lines...) Expand all Loading... |
58 | 62 |
59 source_set("unit_tests") { | 63 source_set("unit_tests") { |
60 testonly = true | 64 testonly = true |
61 sources = [ | 65 sources = [ |
62 "base64url_unittest.cc", | 66 "base64url_unittest.cc", |
63 "cryptauth_access_token_fetcher_impl_unittest.cc", | 67 "cryptauth_access_token_fetcher_impl_unittest.cc", |
64 "cryptauth_api_call_flow_unittest.cc", | 68 "cryptauth_api_call_flow_unittest.cc", |
65 "cryptauth_client_impl_unittest.cc", | 69 "cryptauth_client_impl_unittest.cc", |
66 "cryptauth_enroller_impl_unittest.cc", | 70 "cryptauth_enroller_impl_unittest.cc", |
67 "fake_secure_message_delegate_unittest.cc", | 71 "fake_secure_message_delegate_unittest.cc", |
| 72 "sync_scheduler_impl_unittest.cc", |
68 ] | 73 ] |
69 | 74 |
70 deps = [ | 75 deps = [ |
71 ":cryptauth", | 76 ":cryptauth", |
72 ":test_support", | 77 ":test_support", |
73 "//base/test:test_support", | 78 "//base/test:test_support", |
74 "//google_apis:test_support", | 79 "//google_apis:test_support", |
75 "//net:test_support", | 80 "//net:test_support", |
76 "//testing/gtest", | 81 "//testing/gtest", |
77 ] | 82 ] |
78 } | 83 } |
OLD | NEW |